Differences From Artifact [f06a11fc35]:
- File mttroot/mtt/lib/cc/mtt_Hybrd_Solver.cc — part of check-in [14e7fa093e] at 2002-07-15 17:00:36 on branch origin/master — Writes simulation time to shell when solution converges. (user: geraint@users.sourceforge.net, size: 1651) [annotate] [blame] [check-ins using] [more...]
To Artifact [0e7392017c]:
- File mtt/lib/cc/mtt_Hybrd_Solver.cc — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 1655) [annotate] [blame] [check-ins using] [more...]
- File
mttroot/mtt/lib/cc/mtt_Hybrd_Solver.cc
— part of check-in
[dba62df6f8]
at
2003-12-17 17:21:35
on branch origin/master
— Commented out equation tolerance assignment.
Default is more appropriate for general models. (user: geraint@users.sourceforge.net, size: 1655) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
23 24 25 26 27 28 29 | static int convergences; static int progress_errors; static int limit_errors; static int unknown_errors; NLFunc fcn(&Hybrd_Solver::f_hybrd); NLEqn eqn(Solver::_ui,fcn); | | | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | static int convergences; static int progress_errors; static int limit_errors; static int unknown_errors; NLFunc fcn(&Hybrd_Solver::f_hybrd); NLEqn eqn(Solver::_ui,fcn); // eqn.set_tolerance(1.0e-20); Solver::_ui = eqn.solve(info); switch (info) { case 1: convergences++; break; |
︙ | ︙ |