Artifact 69ab00e5084d3da5e0052345381327487583814eecea047f25858c7469317337:
- 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...]
#include "mtt_Solver.hh" class Reduce_Solver : public Solver { // Dummy class // This will not be used unless the Reduce solver has failed earlier // in the model build process public: Reduce_Solver (sys_ae ae, const int npar, const int nu, const int nx, const int ny, 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) {}; };