Artifact 635ef514783fae4c2e939157d5270835bdb6bd53dc41c7ecb28aefb99b733cf9:
- File mtt/lib/cc/mtt_Reduce_Solver.hh — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 703) [annotate] [blame] [check-ins using] [more...]
- File mttroot/mtt/lib/cc/mtt_Reduce_Solver.hh — part of check-in [b94fab9d42] at 2001-08-08 02:15:00 on branch origin/master — Rationalisation of solver code, beginning with algebraic solvers. (user: geraint@users.sourceforge.net, size: 703) [annotate] [blame] [check-ins using]
#ifndef MTT_REDUCESOLVER #define MTT_REDUCESOLVER #include "mtt_AlgebraicSolver.hh" namespace MTT { class Reduce_Solver : public MTT::AlgebraicSolver { // Dummy class // This will not be used unless the Reduce solver has failed earlier // in the model build process public: Reduce_Solver (const int npar, const int nu, const int nx, const int ny, const int nyz) : AlgebraicSolver (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) {}; }; } #endif // MTT_REDUCESOLVER