43 #ifndef UMFPACK_SOLVER_HPP
44 #define UMFPACK_SOLVER_HPP 1
72 uint32_t _newton_imax;
74 static void umfpack_error(
const std::string func,
int status );
76 void umfpack_decompose(
const CColMatrix &mat );
78 bool force_decomposition =
false );
84 UMFPACKSolver(
double newton_Reps = 1.0e-5,
double newton_dXeps = 1.0e-6,
85 uint32_t newton_imax = 10 );
102 virtual void reset(
void );
107 _newton_imax = newton_imax;
113 _newton_Reps = newton_Reps;
119 _newton_dXeps = newton_dXeps;