]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Align function names for readablity. branch_petscscalar_complex
authoryoung <young@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 3 Jun 2014 11:16:40 +0000 (11:16 +0000)
committeryoung <young@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 3 Jun 2014 11:16:40 +0000 (11:16 +0000)
git-svn-id: https://svn.dealii.org/branches/branch_petscscalar_complex@33010 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/source/numerics/error_estimator.cc

index 19fbf0c5427f9f5813358ba0e906a2038164eab3..b368fc1567ab21b9c4f5abdff02def0b1937290e 100644 (file)
@@ -793,21 +793,21 @@ template <int dim, int spacedim>
 template <typename InputVector, class DH>
 void
 KellyErrorEstimator<dim, spacedim>::
-estimate (const Mapping<dim, spacedim>      &mapping,
-          const DH                &dof_handler,
-          const Quadrature<dim-1> &quadrature,
+estimate (const Mapping<dim, spacedim>               &mapping,
+          const DH                                   &dof_handler,
+          const Quadrature<dim-1>                    &quadrature,
           const typename FunctionMap<spacedim>::type &neumann_bc,
-          const InputVector       &solution,
-          Vector<float>           &error,
-          const ComponentMask &component_mask,
-          const Function<spacedim>     *coefficients,
-          const unsigned int       n_threads,
-          const types::subdomain_id subdomain_id,
-          const types::material_id       material_id)
+          const InputVector                          &solution,
+          Vector<float>                              &error,
+          const ComponentMask                        &component_mask,
+          const Function<spacedim>                   *coefficients,
+          const unsigned int                          n_threads,
+          const types::subdomain_id                   subdomain_id,
+          const types::material_id                    material_id)
 {
   // just pass on to the other function
   const std::vector<const InputVector *> solutions (1, &solution);
-  std::vector<Vector<float>*>              errors (1, &error);
+  std::vector<Vector<float>*>            errors (1, &error);
   estimate (mapping, dof_handler, quadrature, neumann_bc, solutions, errors,
             component_mask, coefficients, n_threads, subdomain_id, material_id);
 }
@@ -817,16 +817,16 @@ template <int dim, int spacedim>
 template <typename InputVector, class DH>
 void
 KellyErrorEstimator<dim,spacedim>::
-estimate (const DH                &dof_handler,
-          const Quadrature<dim-1> &quadrature,
+estimate (const DH                                   &dof_handler,
+          const Quadrature<dim-1>                    &quadrature,
           const typename FunctionMap<spacedim>::type &neumann_bc,
-          const InputVector       &solution,
-          Vector<float>           &error,
-          const ComponentMask &component_mask,
-          const Function<spacedim>     *coefficients,
-          const unsigned int       n_threads,
-          const types::subdomain_id subdomain_id,
-          const types::material_id       material_id)
+          const InputVector                          &solution,
+          Vector<float>                              &error,
+          const ComponentMask                        &component_mask,
+          const Function<spacedim>                   *coefficients,
+          const unsigned int                          n_threads,
+          const types::subdomain_id                   subdomain_id,
+          const types::material_id                    material_id)
 {
   estimate(StaticMappingQ1<dim,spacedim>::mapping, dof_handler, quadrature, neumann_bc, solution,
            error, component_mask, coefficients, n_threads,
@@ -838,21 +838,21 @@ template <int dim, int spacedim>
 template <typename InputVector, class DH>
 void
 KellyErrorEstimator<dim, spacedim>::
-estimate (const Mapping<dim, spacedim>      &mapping,
-          const DH                &dof_handler,
-          const hp::QCollection<dim-1> &quadrature,
+estimate (const Mapping<dim, spacedim>               &mapping,
+          const DH                                   &dof_handler,
+          const hp::QCollection<dim-1>               &quadrature,
           const typename FunctionMap<spacedim>::type &neumann_bc,
-          const InputVector       &solution,
-          Vector<float>           &error,
-          const ComponentMask &component_mask,
-          const Function<spacedim>     *coefficients,
-          const unsigned int       n_threads,
-          const types::subdomain_id subdomain_id,
-          const types::material_id       material_id)
+          const InputVector                          &solution,
+          Vector<float>                              &error,
+          const ComponentMask                        &component_mask,
+          const Function<spacedim>                   *coefficients,
+          const unsigned int                          n_threads,
+          const types::subdomain_id                   subdomain_id,
+          const types::material_id                    material_id)
 {
   // just pass on to the other function
   const std::vector<const InputVector *> solutions (1, &solution);
-  std::vector<Vector<float>*>              errors (1, &error);
+  std::vector<Vector<float>*>            errors (1, &error);
   estimate (mapping, dof_handler, quadrature, neumann_bc, solutions, errors,
             component_mask, coefficients, n_threads, subdomain_id, material_id);
 }
@@ -865,13 +865,13 @@ KellyErrorEstimator<dim, spacedim>::
 estimate (const DH                &dof_handler,
           const hp::QCollection<dim-1> &quadrature,
           const typename FunctionMap<spacedim>::type &neumann_bc,
-          const InputVector       &solution,
-          Vector<float>           &error,
-          const ComponentMask &component_mask,
-          const Function<spacedim>     *coefficients,
-          const unsigned int       n_threads,
-          const types::subdomain_id subdomain_id,
-          const types::material_id       material_id)
+          const InputVector                          &solution,
+          Vector<float>                              &error,
+          const ComponentMask                        &component_mask,
+          const Function<spacedim>                   *coefficients,
+          const unsigned int                          n_threads,
+          const types::subdomain_id                   subdomain_id,
+          const types::material_id                    material_id)
 {
   estimate(StaticMappingQ1<dim, spacedim>::mapping, dof_handler, quadrature, neumann_bc, solution,
            error, component_mask, coefficients, n_threads,
@@ -885,17 +885,17 @@ template <int dim, int spacedim>
 template <typename InputVector, class DH>
 void
 KellyErrorEstimator<dim, spacedim>::
-estimate (const Mapping<dim, spacedim>                  &mapping,
-          const DH                            &dof_handler,
-          const hp::QCollection<dim-1>        &face_quadratures,
+estimate (const Mapping<dim, spacedim>               &mapping,
+          const DH                                   &dof_handler,
+          const hp::QCollection<dim-1>               &face_quadratures,
           const typename FunctionMap<spacedim>::type &neumann_bc,
-          const std::vector<const InputVector *> &solutions,
-          std::vector<Vector<float>*>              &errors,
-          const ComponentMask                  &component_mask,
-          const Function<spacedim>                 *coefficients,
-          const unsigned int                   ,
-          const types::subdomain_id          subdomain_id_,
-          const types::material_id                   material_id)
+          const std::vector<const InputVector *>     &solutions,
+          std::vector<Vector<float>*>                &errors,
+          const ComponentMask                        &component_mask,
+          const Function<spacedim>                   *coefficients,
+          const unsigned int                          ,
+          const types::subdomain_id                   subdomain_id_,
+          const types::material_id                    material_id)
 {
 #ifdef DEAL_II_WITH_P4EST
   if (dynamic_cast<const parallel::distributed::Triangulation<dim,spacedim>*>

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.