25template <
typename Particle_T,
typename FunctorT>
39template <
typename Particle_T,
typename FunctorT>
48template <
typename FunctorT>
55template <
typename FunctorT>
PairwiseFunctor class.
Definition: PairwiseFunctor.h:31
TriwiseFunctor class.
Definition: TriwiseFunctor.h:28
std::false_type isPairwiseFunctorImpl(...)
Returns false for any types that are not a PairwiseFunctor.
std::false_type isTriwiseFunctorImpl(...)
Returns false for any types that are not a TriwiseFunctor.
In this namespace some helper classes and functions can be found used inside of AutoPas.
Definition: namespaces.h:44
decltype(isTriwiseFunctorImpl(std::declval< FunctorT >())) isTriwiseFunctor
Check whether a Functor Type is inheriting from TriwiseFunctor.
Definition: checkFunctorType.h:56
decltype(isPairwiseFunctorImpl(std::declval< FunctorT >())) isPairwiseFunctor
Check whether a Functor Type is inheriting from PairwiseFunctor.
Definition: checkFunctorType.h:49