/** * @file gs.hpp * @author Julian Iseringhausen * @date Mon Apr 18 13:07:59 2011 * * @brief Gauss-Seidel method * */ #ifndef GS_HPP_ #define GS_HPP_ #include "smoother/smoother.hpp" namespace VMG { class GaussSeidel : public Smoother { private: void Compute(Grid& sol, Grid& rhs); }; } #endif /* GS_HPP_ */