Solvers.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 
36 namespace blaze {
37 
38 namespace solvers {
39 
40 //*************************************************************************************************
55 const size_t maxIterations = 25000;
56 //*************************************************************************************************
57 
58 
59 //*************************************************************************************************
73 const real threshold = 5E-7;
74 //*************************************************************************************************
75 
76 } // namespace solvers
77 
78 } // namespace pe
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
const real threshold
Residuum threshold for the LSE/LCP solution of the mathematical solvers.This value specifies the thre...
Definition: Solvers.h:73
const size_t maxIterations
Maximum number of iterations of the mathematical solvers.This value specifies the default maximum num...
Definition: Solvers.h:55
double real
Floating point data type of the Blaze library.This type definition offers the possibility to switch t...
Definition: Precision.h:47