Changeset dfed1c for src/level/level_operator.hpp
- Timestamp:
- Nov 22, 2011, 9:22:10 PM (14 years ago)
- Children:
- facba0
- Parents:
- 66f24d
- File:
-
- 1 edited
-
src/level/level_operator.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/level/level_operator.hpp
r66f24d rdfed1c 17 17 { 18 18 19 class Grid; 20 class Multigrid; 21 19 22 class LevelOperator : public Object 20 23 { … … 25 28 {} 26 29 27 v irtual void Restrict(Multigrid& sol, Multigrid& rhs) = 0;28 v irtual void Prolongate(Multigrid& sol, Multigrid& rhs) = 0;30 void Restrict(Multigrid& sol, Multigrid& rhs); 31 void Prolongate(Multigrid& sol, Multigrid& rhs); 29 32 30 33 protected: 34 virtual void Restrict(Grid& sol_f, Grid& rhs_f, Grid& sol_c, Grid& rhs_c) = 0; 35 virtual void Prolongate(Grid& sol_f, Grid& rhs_f, Grid& sol_c, Grid& rhs_c) = 0; 36 31 37 Stencil& OperatorRestrict() {return operatorRestrict;} 32 38 Stencil& OperatorProlongate() {return operatorProlongate;}
Note:
See TracChangeset
for help on using the changeset viewer.
