NeoPZ
TPZConvergenceException.h
Go to the documentation of this file.
1 /*
2  * File: TPZConvergenceException.h
3  * Author: thiago
4  *
5  * Created on 21 de Agosto de 2018, 11:57
6  */
7 
8 #ifndef TPZCONVERGENCEEXCEPTION_H
9 #define TPZCONVERGENCEEXCEPTION_H
10 
11 #include "pzreal.h"
12 #include "TPZException.h"
13 #include <string>
14 
16 public:
17  TPZConvergenceException(REAL tolerance, unsigned int maxIterations, REAL error, unsigned int itNumber, std::string detail = "");
18  virtual ~TPZConvergenceException();
19 private:
20  REAL fTolerance;
21  unsigned int fMaxIterations;
22  REAL fError;
23  unsigned int fItNumber;
24 };
25 
26 #endif /* TPZCONVERGENCEEXCEPTION_H */
27 
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="")
Contains the declaration of TPZFlopCounter class and TPZCounter struct.