From: Martin Kronbichler Date: Wed, 15 Sep 2010 09:59:22 +0000 (+0000) Subject: Remove unnecessary but expensive call. X-Git-Tag: v8.0.0~5500 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5eea8a1d1befb6d8e28d8674a06671ecb4195f7a;p=dealii.git Remove unnecessary but expensive call. git-svn-id: https://svn.dealii.org/trunk@21973 0785d39b-7218-0410-832d-ea1e28bc413d --- 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 (); } }