IterativeLinearSolver.cpp 354 B

12345678910111213141516171819202122
  1. /**
  2. * @file IterativeLinearSolver.cpp
  3. * @brief abstract interface for iterative linear solvers working with GenericMatrix
  4. * @author Erik Rodner
  5. * @date 12/21/2011
  6. */
  7. #include <iostream>
  8. #include "IterativeLinearSolver.h"
  9. using namespace NICE;
  10. IterativeLinearSolver::IterativeLinearSolver()
  11. {
  12. }
  13. IterativeLinearSolver::~IterativeLinearSolver()
  14. {
  15. }