Artifact 1076338af6396b67e7f089eefda5f6678dfc9d771a3960339837fe15473be4da:
- File mtt/lib/cc/mtt_noAlgebraicSolver.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: 608) [annotate] [blame] [check-ins using] [more...]
- File mttroot/mtt/lib/cc/mtt_noAlgebraicSolver.hh — part of check-in [aa6be937ea] at 2004-08-28 23:50:59 on branch origin/master — Dummy class for use when -ae is not specified as an option. (user: geraint@users.sourceforge.net, size: 608) [annotate] [blame] [check-ins using]
#ifndef MTT_REDUCESOLVER #define MTT_REDUCESOLVER #include "mtt_AlgebraicSolver.hh" namespace MTT { class noAlgebraicSolver : public MTT::AlgebraicSolver { // Dummy class public: noAlgebraicSolver (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); ~noAlgebraicSolver (void) {}; }; } #endif // MTT_REDUCESOLVER