Skip to content
Snippets Groups Projects
Commit d3b45214 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Writtin documentation for iterative solver.

parent 2e4a52c3
No related branches found
No related tags found
1 merge request!116Documentation for linear solvers and preconditioners
......@@ -17,10 +17,6 @@
#include <TNL/Solvers/IterativeSolverMonitor.h>
namespace TNL {
/**
* \brief Namespace for solvers.
*/
namespace Solvers {
/**
......@@ -231,7 +227,7 @@ class IterativeSolver
Real convergenceResidue = 1e-6;
// If the current residue is greater than divergenceResidue, the solver is stopped.
Real divergenceResidue = std::numeric_limits< float >::max();
Real divergenceResidue = std::numeric_limits< Real >::max();
Real currentResidue = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment