/** * @file solver_dirichlet.hpp * @author Julian Iseringhausen * @date Mon Apr 18 13:11:47 2011 * * @brief VMG::SolverDirichlet * */ #ifndef SOLVER_DIRICHLET_HPP_ #define SOLVER_DIRICHLET_HPP_ #include "solver.hpp" namespace VMG { class Multigrid; class SolverDirichlet : public Solver { private: void AssembleMatrix(const Grid& rhs); ///< Assembles all matrices and vectors. void ExportSol(Grid& sol, Grid& rhs); ///< Exports the solution back to a given mesh. }; } #endif /* SOLVER_DIRICHLET_HPP_ */