From: kronbichler Date: Wed, 15 Sep 2010 09:59:22 +0000 (+0000) Subject: Remove unnecessary but expensive call. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4f960395ec842e714446e902f9d50da0883a501;p=dealii-svn.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 (); } }