Overview
Comment: | Return input vector unchanged so that dassl can do the hard stuff. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
28e921aee0e825ff95afdc350958d64f |
User & Date: | geraint@users.sourceforge.net on 2001-08-01 22:16:01 |
Other Links: | branch diff | manifest | tags |
Context
2001-08-02
| ||
03:01:08 |
Stopped initialisation of mttopen from over-writing logic.txt contents. - comment removed from "sort" input (which put it last) because initialisation is inserted in place of the comment by switch_txt2m. check-in: 83896a9315 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2001-08-01
| ||
22:16:01 | Return input vector unchanged so that dassl can do the hard stuff. check-in: 28e921aee0 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
22:14:32 | Bug fix for dassl. check-in: 5a2448e70f user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/cc/mtt_Reduce_Solver.cc from [708e6aadb5] to [f538a6f60b].
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | - - - + + + + + + + + + + + + | #include "mtt_Reduce_Solver.hh" void Reduce_Solver::Solve (void) { |
Modified mttroot/mtt/lib/cc/mtt_Reduce_Solver.hh from [64e757e6a7] to [69ab00e508].
︙ | |||
17 18 19 20 21 22 23 24 25 26 27 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | + + + + + + | const int nyz) : Solver (ae,npar,nu,nx,ny,nyz) { ; }; void Solve (void); ColumnVector solve (const ColumnVector &x, const ColumnVector &u, const double &t, const ColumnVector &par); ~Reduce_Solver (void) {}; }; |