source: src/smoother/smoother.hpp@ 66f24d

Last change on this file since 66f24d was 48b662, checked in by Olaf Lenz <olenz@…>, 14 years ago

Moved files in scafacos_fcs one level up.

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

  • Property mode set to 100644
File size: 443 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;
19class Comm;
20
21class Smoother : public Object
22{
23public:
24 void Run(Multigrid& sol, Multigrid& rhs, int steps);
25
26private:
27 virtual void Compute(Grid& sol, Grid& rhs) = 0;
28};
29
30}
31
32#endif
Note: See TracBrowser for help on using the repository browser.