NeoPZ
TPZConvergenceException.cpp
Go to the documentation of this file.
1 /*
2  * File: TPZConvergenceException.cpp
3  * Author: thiago
4  *
5  * Created on 21 de Agosto de 2018, 11:57
6  */
7 
9 
10 TPZConvergenceException::TPZConvergenceException(REAL tolerance, unsigned int maxIterations, REAL error, unsigned int itNumber, std::string detail) : TPZException(detail),
11 fTolerance(tolerance), fMaxIterations(maxIterations), fError(error), fItNumber(itNumber) {
12 }
13 
15 }
16 
const double tolerance
Tolerance value (Is zero)
void error(char *string)
Definition: testShape.cc:7
TPZConvergenceException(REAL tolerance, unsigned int maxIterations, REAL error, unsigned int itNumber, std::string detail="")