From: Simon Sticko Date: Fri, 22 Apr 2022 11:47:35 +0000 (+0200) Subject: Delete some not-needed objects from test of DiscreteQuadratureGenerator. X-Git-Tag: v9.4.0-rc1~309^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4318baae5498714e69a63f98eaf595145efa84e9;p=dealii.git Delete some not-needed objects from test of DiscreteQuadratureGenerator. --- 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(); }