Differences From Artifact [7422411f93]:
- Executable file mttroot/mtt/cc/include/useful-functions.hh — part of check-in [f80e872abe] at 2001-06-30 03:26:20 on branch origin/numerical-algebraic-solution — gcc-3.0 compatibility. (user: geraint@users.sourceforge.net, size: 1390) [annotate] [blame] [check-ins using] [more...]
To Artifact [c2133a509b]:
- Executable file mttroot/mtt/cc/include/useful-functions.hh — part of check-in [98a5282e8f] at 2001-07-02 00:34:56 on branch origin/numerical-algebraic-solution — gcc-3.0 compatibility. (user: geraint@users.sourceforge.net, size: 1393) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
73 74 75 76 77 78 79 |
static Matrix
zeros (const int r, const int c)
{
Matrix m (r, c, 0.0);
return m;
}
| | | 73 74 75 76 77 78 79 80 81 82 83 84 |
static Matrix
zeros (const int r, const int c)
{
Matrix m (r, c, 0.0);
return m;
}
#endif // __cplusplus
#endif // HAVE_USEFUL_FUNCTIONS_HH
|