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>
22  struct GridFunctionOperatorRegistry<tag::testvec_trial, LC>
23  {
24  static constexpr int degree = 0;
25  static tag::test_trialvec transposedTag(tag::testvec_trial) { return {}; }
27  };
28 
31 } // end namespace AMDiS
zero-order operator
Definition: ZeroOrderTestTrialvec.hpp:22
Definition: AdaptBase.hpp:6
Definition: ZeroOrderTestTrialvec.hpp:17
Definition: ZeroOrderTestvecTrial.hpp:16
Registry to specify a tag for each implementation type.
Definition: GridFunctionOperator.hpp:204