Skip to content
Snippets Groups Projects
Commit 670f98cb authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[NL] Remove const from POD. Enables moves and copies.

parent 4b02c231
No related branches found
No related tags found
No related merge requests found
...@@ -20,9 +20,9 @@ namespace NumLib ...@@ -20,9 +20,9 @@ namespace NumLib
struct NewtonRaphsonSolverParameters struct NewtonRaphsonSolverParameters
{ {
int const maximum_iterations; int maximum_iterations;
double const residuum_tolerance; double residuum_tolerance;
double const increment_tolerance; double increment_tolerance;
}; };
/// Newton-Raphson solver for system of equations using an Eigen linear solvers /// Newton-Raphson solver for system of equations using an Eigen linear solvers
......
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