Skip to content
Snippets Groups Projects
Commit 461e31a0 authored by Nabil Chouika's avatar Nabil Chouika
Browse files

refs#16

In NumA++:
- Correct the default absolute tolerance to 1e-3 in Integrator1D, instead of 0.
parent d4d6db60
Branches
Tags
No related merge requests found
......@@ -21,7 +21,7 @@ const std::string Integrator1D::PARAM_NAME_RELATIVE_TOLERANCE =
"relativeTolerance";
Integrator1D::Integrator1D() :
m_tolerances(Tolerances(0., 1.e-3)) {
m_tolerances(Tolerances(1.e-3, 1.e-3)) {
}
Integrator1D::Integrator1D(const Integrator1D &other) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment