AMDiS 2.10
The Adaptive Multi-Dimensional Simulation Toolbox
ZeroOrderTestvecTrial.hpp
1#pragma once
2
3#include <type_traits>
4
5#include <amdis/localoperators/ZeroOrderTestTrialvec.hpp>
6
7namespace 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:23
Registry to specify a tag for each implementation type.
Definition: GridFunctionOperator.hpp:216
Definition: ZeroOrderTestTrialvec.hpp:17
Definition: ZeroOrderTestvecTrial.hpp:16