From: Wolfgang Bangerth Date: Fri, 22 Sep 2006 05:18:32 +0000 (+0000) Subject: Allow to run through. Check in output X-Git-Tag: v8.0.0~11023 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1848401f2480ad2c80c997c20b93dc5a3ed009f;p=dealii.git Allow to run through. Check in output git-svn-id: https://svn.dealii.org/trunk@13949 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/hp/hp_hanging_nodes_02.cc b/tests/hp/hp_hanging_nodes_02.cc index a8b71d5db7..28ac7dc61a 100644 --- a/tests/hp/hp_hanging_nodes_02.cc +++ b/tests/hp/hp_hanging_nodes_02.cc @@ -304,7 +304,7 @@ void LaplaceProblem::assemble_system (const Function &f_test) template void LaplaceProblem::solve () { - SolverControl solver_control (1000, 1e-12); + SolverControl solver_control (system_rhs.size(), 1e-6); SolverCG<> cg (solver_control); cg.solve (system_matrix, solution, system_rhs,