Differences From Artifact [64e757e6a7]:
- File mttroot/mtt/lib/cc/mtt_Reduce_Solver.hh — part of check-in [2364b84dcb] at 2001-07-13 03:07:59 on branch origin/numerical-algebraic-solution — Added dtors to Solvers (user: geraint@users.sourceforge.net, size: 419) [annotate] [blame] [check-ins using] [more...]
To Artifact [69ab00e508]:
- File mttroot/mtt/lib/cc/mtt_Reduce_Solver.hh — part of check-in [864c3c4711] at 2001-08-01 22:16:01 on branch origin/master — Return input vector unchanged so that dassl can do the hard stuff. (user: geraint@users.sourceforge.net, size: 540) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
17 18 19 20 21 22 23 24 25 26 27 | const int nyz) : Solver (ae,npar,nu,nx,ny,nyz) { ; }; void Solve (void); ~Reduce_Solver (void) {}; }; | > > > > > > | 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) {}; }; |