NiHu  2.0
identity_p2p_operator.h
Go to the documentation of this file.
1 
7 #ifndef NIHU_IDENTITY_P2P_OPERATOR_H_INCLUDED
8 #define NIHU_IDENTITY_P2P_OPERATOR_H_INCLUDED
9 
10 #include "fmm_operator.hpp"
11 #include "local_operator.hpp"
12 
13 namespace NiHu
14 {
15 namespace fmm
16 {
17 
22  : public fmm_operator<p2p_tag>
23 {
24 };
25 
32 template <>
34  : public std::true_type
35 {
36 };
37 
38 } // end of namespace fmm
39 } // end of namespace NiHu
40 
41 #endif /* NIHU_IDENTITY_P2P_OPERATOR_H_INCLUDED */
NiHu::fmm::is_local_operator
Metafunction to tell if an operator is local.
Definition: local_operator.hpp:25
fmm_operator.hpp
FMM operator types and tags.
NiHu::fmm::fmm_operator
Operator defining its tag type.
Definition: fmm_operator.hpp:85
local_operator.hpp
Interface of local operator.
NiHu::fmm::identity_p2p_operator
Identity operator.
Definition: identity_p2p_operator.h:21