Artifact 64e757e6a7a91a34660f36d837de9a310f3b6c41ceb98b71e200129dad52e732:
- 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...]
#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); ~Reduce_Solver (void) {}; };