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