From c1848401f2480ad2c80c997c20b93dc5a3ed009f Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 22 Sep 2006 05:18:32 +0000 Subject: [PATCH] Allow to run through. Check in output git-svn-id: https://svn.dealii.org/trunk@13949 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/hp/hp_hanging_nodes_02.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.39.5