| Rev | Line | |
|---|
| [48b662] | 1 | /**
|
|---|
| 2 | * @file level_operator_cs.hpp
|
|---|
| 3 | * @author Julian Iseringhausen <isering@ins.uni-bonn.de>
|
|---|
| 4 | * @date Mon Apr 18 13:00:01 2011
|
|---|
| 5 | *
|
|---|
| 6 | * @brief VMG::LevelOperatorCS
|
|---|
| 7 | *
|
|---|
| 8 | */
|
|---|
| 9 |
|
|---|
| 10 | #ifndef LEVEL_OPERATOR_CS_HPP_
|
|---|
| 11 | #define LEVEL_OPERATOR_CS_HPP_
|
|---|
| 12 |
|
|---|
| 13 | #include "level/level_operator.hpp"
|
|---|
| 14 |
|
|---|
| 15 | namespace VMG
|
|---|
| 16 | {
|
|---|
| 17 |
|
|---|
| 18 | class LevelOperatorCS : public LevelOperator
|
|---|
| 19 | {
|
|---|
| 20 | public:
|
|---|
| 21 | LevelOperatorCS(const Stencil& operatorRestrict_, const Stencil& operatorProlongate_) :
|
|---|
| 22 | LevelOperator(operatorRestrict_, operatorProlongate_)
|
|---|
| 23 | {}
|
|---|
| 24 |
|
|---|
| [dfed1c] | 25 | protected:
|
|---|
| 26 | void Restrict(Grid& sol_f, Grid& rhs_f, Grid& sol_c, Grid& rhs_c);
|
|---|
| 27 | void Prolongate(Grid& sol_f, Grid& rhs_f, Grid& sol_c, Grid& rhs_c);
|
|---|
| [48b662] | 28 | };
|
|---|
| 29 |
|
|---|
| 30 | }
|
|---|
| 31 |
|
|---|
| 32 | #endif /* LEVEL_OPERATOR_CS_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.