AMDiS  0.3
The Adaptive Multi-Dimensional Simulation Toolbox
ZeroOrderTestvecTrial.hpp
1 #pragma once
2 
3 #include <type_traits>
4 
5 #include <amdis/localoperators/ZeroOrderTestTrialvec.hpp>
6 
7 namespace AMDiS
8 {
14  namespace tag
15  {
16  struct testvec_trial {};
17  }
18 
19 
21  template <class LC, class GridFct>
22  class GridFunctionOperator<tag::testvec_trial, LC, GridFct>
23  : public GridFunctionOperatorTransposed<GridFunctionOperator<tag::testvec_trial, LC, GridFct>,
24  GridFunctionOperator<tag::test_trialvec, LC, GridFct>>
25  {
26  using Self = GridFunctionOperator;
29 
30  public:
32  : Super(tag::test_trialvec{}, expr)
33  {}
34  };
35 
38 } // end namespace AMDiS
The base-template for GridFunctionOperators.
Definition: GridFunctionOperator.hpp:242
zero-order operator
Definition: ZeroOrderTestTrialvec.hpp:23
Contains all classes needed for solving linear and non linear equation systems.
Definition: AdaptBase.hpp:6
The transposed operator, implemented in term of its transposed by calling getElementMatrix with inver...
Definition: GridFunctionOperator.hpp:150
Definition: ZeroOrderTestTrialvec.hpp:17
Definition: ZeroOrderTestvecTrial.hpp:16