From: Matthias Maier Date: Fri, 15 Jun 2018 22:20:06 +0000 (-0500) Subject: Fix accidental renaming X-Git-Tag: v9.1.0-rc1~1020^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6771%2Fhead;p=dealii.git Fix accidental renaming --- diff --git a/tests/integrators/assembler_simple_system_inhom_01.cc b/tests/integrators/assembler_simple_system_inhom_01.cc index dff2b7160e..0ff5f528c5 100644 --- a/tests/integrators/assembler_simple_system_inhom_01.cc +++ b/tests/integrators/assembler_simple_system_inhom_01.cc @@ -483,13 +483,11 @@ RHSIntegrator::face(MeshWorker::DoFInfo &, * Main class */ template -class MeshWorkerAffineConstraints Test +class MeshWorkerConstraintMatrixTest { public: - MeshWorkerAffineConstraints - Test(const FiniteElement &fe); - ~MeshWorkerAffineConstraints - Test(); + MeshWorkerConstraintMatrixTest(const FiniteElement &fe); + ~MeshWorkerConstraintMatrixTest(); void run(); @@ -525,9 +523,8 @@ private: template -MeshWorkerAffineConstraints - Test::MeshWorkerAffineConstraints - Test(const FiniteElement &fe) +MeshWorkerConstraintMatrixTest::MeshWorkerConstraintMatrixTest( + const FiniteElement &fe) : mapping() , dof_handler(triangulation) , fe(fe) @@ -543,17 +540,15 @@ MeshWorkerAffineConstraints template -MeshWorkerAffineConstraints - Test::~MeshWorkerAffineConstraints - Test() +MeshWorkerConstraintMatrixTest::~MeshWorkerConstraintMatrixTest() { dof_handler.clear(); } template -void MeshWorkerAffineConstraints - Test::setup_system() +void +MeshWorkerConstraintMatrixTest::setup_system() { dof_handler.distribute_dofs(fe); @@ -592,8 +587,8 @@ void MeshWorkerAffineConstraints * Assemble with SystemSimple */ template -void MeshWorkerAffineConstraints - Test::assemble_system_MeshWorker() +void +MeshWorkerConstraintMatrixTest::assemble_system_MeshWorker() { MeshWorker::IntegrationInfoBox info_box; @@ -628,8 +623,8 @@ void MeshWorkerAffineConstraints * Assemble matrix and vector separately */ template -void MeshWorkerAffineConstraints - Test::assemble_MeshWorker() +void +MeshWorkerConstraintMatrixTest::assemble_MeshWorker() { MeshWorker::IntegrationInfoBox info_box; @@ -672,8 +667,8 @@ void MeshWorkerAffineConstraints template -void MeshWorkerAffineConstraints - Test::createInhomConstraints() +void +MeshWorkerConstraintMatrixTest::createInhomConstraints() { this->constraintsInhom.clear(); // boundary constraints @@ -706,8 +701,8 @@ void MeshWorkerAffineConstraints template -void MeshWorkerAffineConstraints - Test::run() +void +MeshWorkerConstraintMatrixTest::run() { setup_system(); createInhomConstraints(); @@ -748,13 +743,13 @@ main() FE_Q<2> fe(1); deallog.push(fe.get_name()); - MeshWorkerAffineConstraints Test<2> test(fe); + MeshWorkerConstraintMatrixTest<2> test(fe); test.run(); deallog.pop(); FE_DGQ<2> fe2(1); deallog.push(fe2.get_name()); - MeshWorkerAffineConstraints Test<2> test2(fe2); + MeshWorkerConstraintMatrixTest<2> test2(fe2); test2.run(); deallog.pop(); }