source: src/smoother/smoother.hpp@ 64ba929

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

Major vmg update.

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

  • Property mode set to 100644
File size: 431 bytes
Line 
1/**
2 * @file smoother.hpp
3 * @author Julian Iseringhausen <isering@ins.uni-bonn.de>
4 * @date Mon Apr 18 13:09:13 2011
5 *
6 * @brief VMG::Smoother
7 *
8 */
9
10#ifndef SMOOTHER_HPP_
11#define SMOOTHER_HPP_
12
13#include "base/object.hpp"
14
15namespace VMG
16{
17
18class Grid;
19
20class Smoother : public Object
21{
22public:
23 void Run(Multigrid& sol, Multigrid& rhs, int steps);
24
25private:
26 virtual void Compute(Grid& sol, Grid& rhs) = 0;
27};
28
29}
30
31#endif
Note: See TracBrowser for help on using the repository browser.