Differences From Artifact [66ec9e6cff]:
- File mttroot/mtt/lib/cc/mtt_implicit.cc — part of check-in [fe41f9074c] at 2001-02-19 06:33:19 on branch origin/master — Removed operation form loop. (user: geraint@users.sourceforge.net, size: 1692) [annotate] [blame] [check-ins using] [more...]
To Artifact [f27f1345e2]:
- File mttroot/mtt/lib/cc/mtt_implicit.cc — part of check-in [7f5b9f0bd7] at 2001-02-23 03:53:55 on branch origin/merging-ode2odes-exe — Minor revisions. (ode2odes.exe works on GNU/Linux and ~GNU/Irix) (user: geraint@users.sourceforge.net, size: 1744) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
for (row = 0; row < Nx; row++)
{
if (0 != openx (row))
{
AAx (row) = 0.0;
dx (row) = 0.0;
for (col = 0; col < Nx; col++)
{
AA (row,col) = 0.0;
}
}
}
x = static_cast<ColumnVector> (xleftdiv (AA, static_cast<Matrix>(AAx + dx * t)));
for (row = 0; row < Nx; row++)
{
| > > > | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
for (row = 0; row < Nx; row++)
{
if (0 != openx (row))
{
AAx (row) = 0.0;
dx (row) = 0.0;
#ifndef RISKLEAKS
for (col = 0; col < Nx; col++)
{
AA (row,col) = 0.0;
AA (col,row) = 0.0;
}
#endif
}
}
x = static_cast<ColumnVector> (xleftdiv (AA, static_cast<Matrix>(AAx + dx * t)));
for (row = 0; row < Nx; row++)
{
|
| ︙ | ︙ |