source: src/smoother/jacobi.hpp@ 4571da

Last change on this file since 4571da was 4571da, checked in by Julian Iseringhausen <isering@…>, 14 years ago

vmg: Implement fourth-order discretization of the Poisson equation.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@1762 5161e1c8-67bf-11de-9fd5-51895aff932f

  • Property mode set to 100644
File size: 380 bytes
Line 
1/**
2 * @file jacobi.hpp
3 * @author Julian Iseringhausen <isering@ins.uni-bonn.de>
4 * @date Fri Apr 27 19:50:36 2012
5 *
6 * @brief Jacobi smoother
7 *
8 */
9
10#ifndef JACOBI_HPP_
11#define JACOBI_HPP_
12
13#include "smoother/smoother.hpp"
14
15namespace VMG
16{
17
18class Multigrid;
19
20class Jacobi : public Smoother
21{
22private:
23 void Compute(Grid& sol, Grid& rhs);
24};
25
26}
27
28#endif /* JACOBI_HPP_ */
Note: See TracBrowser for help on using the repository browser.