Overview
Comment: | Fixed stupid typo in max and min functions. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/merging-ode2odes-exe | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f7f1dc1e6a4d63bdbf0c627dba4fc75a |
User & Date: | geraint@users.sourceforge.net on 2001-03-02 00:40:18 |
Other Links: | branch diff | manifest | tags |
Context
2001-03-02
| ||
00:45:21 | Separated Euler and Implicit methods in .cc code and dependencies. check-in: 3098274adc user: geraint@users.sourceforge.net tags: origin/merging-ode2odes-exe, trunk | |
00:40:18 | Fixed stupid typo in max and min functions. check-in: f7f1dc1e6a user: geraint@users.sourceforge.net tags: origin/merging-ode2odes-exe, trunk | |
2001-03-01
| ||
05:05:53 | Minor revisions. check-in: 449e55e2e4 user: geraint@users.sourceforge.net tags: origin/merging-ode2odes-exe, trunk | |
Changes
Modified mttroot/mtt/cc/include/useful-functions.hh from [c0b27c8721] to [f8dd1f5d60].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | + + - - - - + + + + + + + + + + + + + - - + + - + + + + + + + + + + | #ifndef HAVE_USEFUL_FUNCTIONS_HH #define HAVE_USEFUL_FUNCTIONS_HH #ifdef __CPLUSPLUS |
︙ | |||
51 52 53 54 55 56 57 | 71 72 73 74 75 76 77 78 | - - - - - - - - - - | inline Matrix zeros (const int r, const int c) { Matrix m (r, c, 0.0); return m; } |