From: heister Date: Mon, 16 Sep 2013 12:10:12 +0000 (+0000) Subject: fix performance test: same quadrature X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6acf8481ca6bfdb85bec2e86e5ad8a3ba2a1bb7e;p=dealii-svn.git fix performance test: same quadrature git-svn-id: https://svn.dealii.org/trunk@30728 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/benchmarks/test_hp/step.cc b/tests/benchmarks/test_hp/step.cc index 8470da8a95..5379a4cf04 100644 --- a/tests/benchmarks/test_hp/step.cc +++ b/tests/benchmarks/test_hp/step.cc @@ -421,7 +421,7 @@ template void Step6::assemble_system () { system_matrix = 0; - const QGauss qformula(3); + const QGauss qformula(fe.degree+1); FEValues fe_values (fe, qformula, update_values | update_gradients | @@ -494,7 +494,7 @@ void Step6::assemble_system_hp () // const QGauss quadrature_formula(3); hp::QCollection qformulas; - qformulas.push_back(QGauss(2)); + qformulas.push_back(QGauss(fe.degree+1)); hp::FEValues hp_fe_values (hpfe, qformulas, update_values | update_gradients |