]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix accidental renaming 6771/head
authorMatthias Maier <tamiko@43-1.org>
Fri, 15 Jun 2018 22:20:06 +0000 (17:20 -0500)
committerMatthias Maier <tamiko@43-1.org>
Fri, 15 Jun 2018 22:23:59 +0000 (17:23 -0500)
tests/integrators/assembler_simple_system_inhom_01.cc

index dff2b7160ebe1e75439631039f307a9b48ec0267..0ff5f528c56a9c5ab6f658cff5148eb7ad24f8a9 100644 (file)
@@ -483,13 +483,11 @@ RHSIntegrator<dim>::face(MeshWorker::DoFInfo<dim> &,
  * Main class
  */
 template <int dim>
-class MeshWorkerAffineConstraints<double> Test
+class MeshWorkerConstraintMatrixTest
 {
 public:
-  MeshWorkerAffineConstraints<double>
-  Test(const FiniteElement<dim> &fe);
-  ~MeshWorkerAffineConstraints<double>
-  Test();
+  MeshWorkerConstraintMatrixTest(const FiniteElement<dim> &fe);
+  ~MeshWorkerConstraintMatrixTest();
 
   void
   run();
@@ -525,9 +523,8 @@ private:
 
 
 template <int dim>
-MeshWorkerAffineConstraints<double>
-  Test<dim>::MeshWorkerAffineConstraints<double>
-  Test(const FiniteElement<dim> &fe)
+MeshWorkerConstraintMatrixTest<dim>::MeshWorkerConstraintMatrixTest(
+  const FiniteElement<dim> &fe)
   : mapping()
   , dof_handler(triangulation)
   , fe(fe)
@@ -543,17 +540,15 @@ MeshWorkerAffineConstraints<double>
 
 
 template <int dim>
-MeshWorkerAffineConstraints<double>
-  Test<dim>::~MeshWorkerAffineConstraints<double>
-  Test()
+MeshWorkerConstraintMatrixTest<dim>::~MeshWorkerConstraintMatrixTest()
 {
   dof_handler.clear();
 }
 
 
 template <int dim>
-void MeshWorkerAffineConstraints<double>
-     Test<dim>::setup_system()
+void
+MeshWorkerConstraintMatrixTest<dim>::setup_system()
 {
   dof_handler.distribute_dofs(fe);
 
@@ -592,8 +587,8 @@ void MeshWorkerAffineConstraints<double>
  * Assemble with SystemSimple
  */
 template <int dim>
-void MeshWorkerAffineConstraints<double>
-     Test<dim>::assemble_system_MeshWorker()
+void
+MeshWorkerConstraintMatrixTest<dim>::assemble_system_MeshWorker()
 {
   MeshWorker::IntegrationInfoBox<dim> info_box;
 
@@ -628,8 +623,8 @@ void MeshWorkerAffineConstraints<double>
  * Assemble matrix and vector separately
  */
 template <int dim>
-void MeshWorkerAffineConstraints<double>
-     Test<dim>::assemble_MeshWorker()
+void
+MeshWorkerConstraintMatrixTest<dim>::assemble_MeshWorker()
 {
   MeshWorker::IntegrationInfoBox<dim> info_box;
 
@@ -672,8 +667,8 @@ void MeshWorkerAffineConstraints<double>
 
 
 template <int dim>
-void MeshWorkerAffineConstraints<double>
-     Test<dim>::createInhomConstraints()
+void
+MeshWorkerConstraintMatrixTest<dim>::createInhomConstraints()
 {
   this->constraintsInhom.clear();
   // boundary constraints
@@ -706,8 +701,8 @@ void MeshWorkerAffineConstraints<double>
 
 
 template <int dim>
-void MeshWorkerAffineConstraints<double>
-     Test<dim>::run()
+void
+MeshWorkerConstraintMatrixTest<dim>::run()
 {
   setup_system();
   createInhomConstraints();
@@ -748,13 +743,13 @@ main()
 
   FE_Q<2> fe(1);
   deallog.push(fe.get_name());
-  MeshWorkerAffineConstraints<double> Test<2> test(fe);
+  MeshWorkerConstraintMatrixTest<2> test(fe);
   test.run();
   deallog.pop();
 
   FE_DGQ<2> fe2(1);
   deallog.push(fe2.get_name());
-  MeshWorkerAffineConstraints<double> Test<2> test2(fe2);
+  MeshWorkerConstraintMatrixTest<2> test2(fe2);
   test2.run();
   deallog.pop();
 }

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.