Skip to content
Snippets Groups Projects
Commit 07538d6e authored by Guylaine Prat's avatar Guylaine Prat
Browse files

Adapt the convergence threshold to the real scaling factor

parent 679bafb2
No related branches found
No related tags found
No related merge requests found
......@@ -208,7 +208,7 @@ public class GroundRefining extends Refining {
System.out.format("\n**** Start optimization **** %n");
int maxIterations = 100;
double convergenceThreshold = 1e-14;
double convergenceThreshold = 1.e-11;
refining.optimization(maxIterations, convergenceThreshold, measurements.getObservables(), refining.getRugged());
......
......@@ -296,7 +296,7 @@ public class InterRefining extends Refining {
System.out.format("\n**** Start optimization **** %n");
int maxIterations = 100;
double convergenceThreshold = 1e-10;
double convergenceThreshold = 1.e-7;
refining.optimization(maxIterations, convergenceThreshold,
measurements.getObservables(),
......
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