From 4318baae5498714e69a63f98eaf595145efa84e9 Mon Sep 17 00:00:00 2001 From: Simon Sticko Date: Fri, 22 Apr 2022 13:47:35 +0200 Subject: [PATCH] Delete some not-needed objects from test of DiscreteQuadratureGenerator. --- tests/non_matching/discrete_quadrature_generator.cc | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/tests/non_matching/discrete_quadrature_generator.cc b/tests/non_matching/discrete_quadrature_generator.cc index 6afaf4ba09..666ce683a8 100644 --- a/tests/non_matching/discrete_quadrature_generator.cc +++ b/tests/non_matching/discrete_quadrature_generator.cc @@ -18,11 +18,9 @@ #include #include -#include #include -#include #include #include @@ -61,12 +59,9 @@ private: hp::FECollection fe_collection; DoFHandler dof_handler; - hp::MappingCollection mapping_collection; - hp::QCollection q_collection; - hp::QCollection<1> q_collection1D; + hp::QCollection<1> q_collection1D; - Vector level_set; - NonMatching::MeshClassifier mesh_classifier; + Vector level_set; }; @@ -74,12 +69,9 @@ private: template Test::Test() : dof_handler(triangulation) - , mesh_classifier(dof_handler, level_set) { fe_collection.push_back(FE_Q(1)); - mapping_collection.push_back(MappingCartesian()); const unsigned int n_quadrature_points = 1; - q_collection.push_back(QGauss(n_quadrature_points)); q_collection1D.push_back(QGauss<1>(n_quadrature_points)); } @@ -92,7 +84,6 @@ Test::run() setup_mesh(); dof_handler.distribute_dofs(fe_collection); setup_discrete_level_set(); - mesh_classifier.reclassify(); test_discrete_quadrature_generator(); test_discrete_face_quadrature_generator(); } -- 2.39.5