source: src/level/level_operator_cs.hpp@ 06e153

Last change on this file since 06e153 was ac6d04, checked in by Julian Iseringhausen <isering@…>, 14 years ago

Merge recent changes of the vmg library into ScaFaCos.

Includes a fix for the communication problems on Jugene.

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

  • Property mode set to 100644
File size: 643 bytes
Line 
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
15namespace VMG
16{
17
18class LevelOperatorCS : public LevelOperator
19{
20public:
21 LevelOperatorCS(const Stencil& operatorRestrict_, const Stencil& operatorProlongate_) :
22 LevelOperator(operatorRestrict_, operatorProlongate_)
23 {}
24
25 void Restrict(Multigrid& sol, Multigrid& rhs);
26 void Prolongate(Multigrid& sol, Multigrid& rhs);
27};
28
29}
30
31#endif /* LEVEL_OPERATOR_CS_HPP_ */
Note: See TracBrowser for help on using the repository browser.