Differences From Artifact [d701ed61c9]:
- File mttroot/mtt/lib/cc/mtt_Solver.hh — part of check-in [6e5926c3aa] at 2001-06-05 03:20:40 on branch origin/numerical-algebraic-solution — added -ae option to select algebraic equation solution method. (user: geraint@users.sourceforge.net, size: 886) [annotate] [blame] [check-ins using] [more...]
To Artifact [0879e1fbca]:
- File mttroot/mtt/lib/cc/mtt_Solver.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: 897) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | + | #ifndef MTT_SOLVER #define MTT_SOLVER #include <cmath> #include <cstdlib> #include <iostream> #include <octave/oct.h> class Solver { protected: typedef ColumnVector (*sys_ae) // pointer to F${sys}_ae function (ColumnVector &,ColumnVector &,const double &t,ColumnVector &); public: Solver (sys_ae ae, const int npar, |
︙ |