Differences From Artifact [04698e6717]:
- File mttroot/mtt/lib/cc/mtt_AlgebraicSolver.cc — part of check-in [b94fab9d42] at 2001-08-08 02:15:00 on branch origin/master — Rationalisation of solver code, beginning with algebraic solvers. (user: geraint@users.sourceforge.net, size: 566) [annotate] [blame] [check-ins using] [more...]
To Artifact [ab49594ff5]:
- File mttroot/mtt/lib/cc/mtt_AlgebraicSolver.cc — part of check-in [9b3e5aebaa] at 2002-03-26 12:06:16 on branch origin/master — Changed initial solver value from 1.0 to 0.0. (user: geraint@users.sourceforge.net, size: 566) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
9 10 11 12 13 14 15 |
{
if (_nyz > 0)
{
_x = x;
_uui.insert(u,0);
_t = t;
_par = par;
| | | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
{
if (_nyz > 0)
{
_x = x;
_uui.insert(u,0);
_t = t;
_par = par;
_ui = ColumnVector(_nyz,0.0);
Solve();
_uui.insert(_ui,_nu);
}
else
{
_uui = u;
}
|
| ︙ | ︙ |