Skip to content
Snippets Groups Projects
Verified Commit 447d4ce3 authored by Paul Dechamps's avatar Paul Dechamps :speech_balloon:
Browse files

(feat) Add tol setters in Solver

parent d8890572
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,8 @@ public:
void save(tbox::MshExport *mshWriter, std::string const &suffix = "");
int getRow(size_t i) const { return rows[i]; };
void setRelTol(double const rtol) { relTol = rtol; }
void setAbsTol(double const atol) { absTol = atol; }
protected:
void computeFlow();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment