From 5eea8a1d1befb6d8e28d8674a06671ecb4195f7a Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Wed, 15 Sep 2010 09:59:22 +0000 Subject: [PATCH] Remove unnecessary but expensive call. git-svn-id: https://svn.dealii.org/trunk@21973 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/inhomogeneous_constraints.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/deal.II/inhomogeneous_constraints.cc b/tests/deal.II/inhomogeneous_constraints.cc index a7965967a2..41ad64da56 100644 --- a/tests/deal.II/inhomogeneous_constraints.cc +++ b/tests/deal.II/inhomogeneous_constraints.cc @@ -690,7 +690,8 @@ void LaplaceProblem::run () assemble_test_2 (); solve (); - postprocess (); + if (cycle < 2) + postprocess (); } } -- 2.39.5