00001 // This file is part of the imaging2 class library. 00002 // 00003 // University of Innsbruck, Infmath Imaging, 2009. 00004 // http://infmath.uibk.ac.at 00005 // 00006 // All rights reserved. 00007 00008 00009 #ifndef SOLVER_LUSOLVER_H 00010 #define SOLVER_LUSOLVER_H 00011 00012 #include <solver/SolverInterface.hpp> 00013 00014 namespace imaging 00015 { 00021 class LuSolver : public SolverInterface 00022 { 00023 00024 public: 00025 LuSolver() {} 00026 00027 void solve(const ublas::compressed_matrix<float_t> & eqs, const ublas::vector<float_t> & rhs, ublas::vector<float_t> & result) const; 00028 }; 00029 00030 } 00031 00032 #endif