12345678910111213141516171819202122 |
- /**
- * @file IterativeLinearSolver.cpp
- * @brief abstract interface for iterative linear solvers working with GenericMatrix
- * @author Erik Rodner
- * @date 12/21/2011
- */
- #include <iostream>
- #include "IterativeLinearSolver.h"
- using namespace NICE;
- IterativeLinearSolver::IterativeLinearSolver()
- {
- }
- IterativeLinearSolver::~IterativeLinearSolver()
- {
- }
|