/** * @file gsrb.hpp * @author Julian Iseringhausen * @date Mon Apr 18 13:08:36 2011 * * @brief Gauss-Seidel Red-Black method * */ #ifndef GSRB_HPP_ #define GSRB_HPP_ #include "smoother/smoother.hpp" namespace VMG { class Multigrid; class GaussSeidelRB : public Smoother { private: void Compute(Grid& sol, Grid& rhs); }; } #endif /* GSRB_HPP_ */