Skip to content
Snippets Groups Projects
Commit b5e50212 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[T/HM] Conf.Compr.: Change linear solver tol.

The 1e-16 is not needed because the Newton solver
tolerance is only 1e-8.
parent 0d30aaef
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment