NiHu  2.0
local_operator.hpp
Go to the documentation of this file.
1 
7 #ifndef NIHU_LOCAL_OPERATOR_HPP
8 #define NIHU_LOCAL_OPERATOR_HPP
9 
10 #include <type_traits>
11 
12 namespace NiHu
13 {
14 namespace fmm
15 {
16 
24 template <class Operator>
26  : public std::false_type
27 {
28 };
29 
30 } // end of namespace fmm
31 } // end of namespace NiHu
32 
33 #endif /* NIHU_LOCAL_OPERATOR_HPP */
NiHu::fmm::is_local_operator
Metafunction to tell if an operator is local.
Definition: local_operator.hpp:25