From 182edce901944504b6a63b0fdac274aee818015e Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Sat, 24 Sep 2005 22:58:33 +0000 Subject: [PATCH] remove console output git-svn-id: https://svn.dealii.org/trunk@11529 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/fe/interpolate_common.h | 4 ++-- tests/fe/interpolate_q1.cc | 2 +- tests/fe/interpolate_rtn.cc | 2 +- tests/fe/interpolate_system.cc | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/fe/interpolate_common.h b/tests/fe/interpolate_common.h index 6ba18b829a..75240e8675 100644 --- a/tests/fe/interpolate_common.h +++ b/tests/fe/interpolate_common.h @@ -117,8 +117,8 @@ Q1WedgeFunction : public Function { Assert (values.size() == points.size(), ExcDimensionMismatch(values.size(), points.size())); - Assert (values[0].size() == n_components, - ExcDimensionMismatch(values.size(), n_components)); + Assert (values[0].size() == this->n_components, + ExcDimensionMismatch(values.size(), this->n_components)); for (unsigned int i=0;i w1; diff --git a/tests/fe/interpolate_rtn.cc b/tests/fe/interpolate_rtn.cc index d43e16ce08..36f1740561 100644 --- a/tests/fe/interpolate_rtn.cc +++ b/tests/fe/interpolate_rtn.cc @@ -53,7 +53,7 @@ int main() { std::ofstream logfile ("interpolate_rtn.output"); deallog.attach(logfile); - deallog.depth_console(10); + deallog.depth_console(0); deallog.threshold_double(1.e-15); // Q1WedgeFunction<1,1,2> w1; diff --git a/tests/fe/interpolate_system.cc b/tests/fe/interpolate_system.cc index 57e50bbae0..79d48499a6 100644 --- a/tests/fe/interpolate_system.cc +++ b/tests/fe/interpolate_system.cc @@ -87,7 +87,7 @@ int main() { std::ofstream logfile ("interpolate_system.output"); deallog.attach(logfile); - deallog.depth_console(10); + deallog.depth_console(0); deallog.threshold_double(1.e-15); Q1WedgeFunction<1,1,2> w1; -- 2.39.5