| 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 |
|
|---|
| 15 | namespace VMG
|
|---|
| 16 | {
|
|---|
| 17 |
|
|---|
| 18 | class Grid;
|
|---|
| 19 |
|
|---|
| 20 | class Smoother : public Object
|
|---|
| 21 | {
|
|---|
| 22 | public:
|
|---|
| 23 | void Run(Multigrid& sol, Multigrid& rhs, int steps);
|
|---|
| 24 |
|
|---|
| 25 | private:
|
|---|
| 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.