1
0
Fork 0

YASim: revert max solver iterations back to 10000

This commit is contained in:
Henning Stahlke 2018-02-11 16:38:19 +01:00
parent 59c059ddb6
commit 3bac8b93f2

View file

@ -226,7 +226,7 @@ private:
// How close to the solution are we trying get?
// Trying too hard can result in oscillations (no convergence).
float _solverThreshold {1};
int _solverMaxIterations {4000};
int _solverMaxIterations {10000};
Model _model;
ControlMap _controlMap;