From b5e5021290c8bd0750aa7bc348a21ae83701b5a5 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Fri, 15 Dec 2017 12:51:04 +0100 Subject: [PATCH] [T/HM] Conf.Compr.: Change linear solver tol. The 1e-16 is not needed because the Newton solver tolerance is only 1e-8. --- .../HydroMechanics/Linear/Confined_Compression/cube_1e3.prj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/Data/HydroMechanics/Linear/Confined_Compression/cube_1e3.prj b/Tests/Data/HydroMechanics/Linear/Confined_Compression/cube_1e3.prj index 7d7e7664b36..98cd7619f0f 100644 --- a/Tests/Data/HydroMechanics/Linear/Confined_Compression/cube_1e3.prj +++ b/Tests/Data/HydroMechanics/Linear/Confined_Compression/cube_1e3.prj @@ -241,12 +241,12 @@ <linear_solvers> <linear_solver> <name>general_linear_solver</name> - <lis>-i bicgstab -p ilu -tol 1e-16 -maxiter 10000</lis> + <lis>-i bicgstab -p ilu -tol 1e-10 -maxiter 10000</lis> <eigen> <solver_type>BiCGSTAB</solver_type> <precon_type>DIAGONAL</precon_type> <max_iteration_step>10000</max_iteration_step> - <error_tolerance>1e-16</error_tolerance> + <error_tolerance>1e-10</error_tolerance> </eigen> </linear_solver> </linear_solvers> -- GitLab