Differences From Artifact [478c947ac8]:
- File
mttroot/mtt/lib/cc/mtt_Hybrd_Solver.cc
— part of check-in
[5685d298d1]
at
2002-05-01 17:30:56
on branch origin/master
— Improved pre-processor directives to better accommodate future alternatives (matlab)
if necessary. (user: geraint@users.sourceforge.net, size: 1560) [annotate] [blame] [check-ins using] [more...]
To Artifact [9ffbf825ef]:
- File
mttroot/mtt/lib/cc/mtt_Hybrd_Solver.cc
— part of check-in
[eb84d8e84b]
at
2002-07-15 12:50:51
on branch origin/master
— The solution vector (_ui) is no longer re-zeroed each step.
Retaining the previous value appears to give dramatically better performance.Messages to the console are now buffered through clog instead of using cerr. (user: geraint@users.sourceforge.net, size: 1560) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
52 53 54 55 56 57 58 | break; default: unknown_errors++; break; } if (1 != info) { | | | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | break; default: unknown_errors++; break; } if (1 != info) { std::clog << " time " << _t << " \t" << " converge (" << convergences << ") " << " limit (" << limit_errors << ")" << " (max error = " << std::abs (eval(_ui).max()) << ")" << " other (" << input_errors + user_errors + progress_errors + unknown_errors << ") " << std::endl; } |
︙ | ︙ |