123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef _NICE_ITERATIVELINEARSOLVERINCLUDE
- #define _NICE_ITERATIVELINEARSOLVERINCLUDE
- #include "core/vector/VectorT.h"
- #include "GenericMatrix.h"
- namespace NICE {
-
- class IterativeLinearSolver
- {
- protected:
- public:
-
- IterativeLinearSolver();
-
-
- virtual ~IterativeLinearSolver();
-
- virtual int solveLin ( const GenericMatrix & gm, const Vector & b, Vector & x ) = 0;
- };
- }
- #endif
|