Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
predicate.h File Reference
#include <type_traits>
#include <tuple>
#include "execution_policy.h"
#include "scalar_categories.h"
#include "tensor_traits.h"

Go to the source code of this file.

Namespaces

namespace  dg
 This is the namespace for all functions and classes defined and used by the discontinuous Galerkin library.
 

Typedefs

template<class T , class Tag = AnyScalarTag>
using dg::is_scalar = typename std::is_base_of<Tag, get_tensor_category<T>>::type
 Does a type have a tensor_category derived from Tag.
 
template<class T , class Tag = AnyVectorTag>
using dg::is_vector = typename std::is_base_of<Tag, get_tensor_category<T>>::type
 Does a type have a tensor_category derived from Tag.
 
template<class T , class Tag = AnyMatrixTag>
using dg::is_matrix = typename std::is_base_of<Tag, get_tensor_category<T>>::type
 Does a type have a tensor_category derived from Tag.
 
template<class T , class Tag = AnyPolicyTag>
using dg::has_policy = std::is_same<Tag, get_execution_policy<T>>
 Does a type have an execution_policy equal to Tag.
 

Variables

template<class T , class Tag = AnyScalarTag>
constexpr bool dg::is_scalar_v = is_scalar<T, Tag>::value
 Utility typedef.
 
template<class T , class Tag = AnyVectorTag>
constexpr bool dg::is_vector_v = is_vector<T, Tag>::value
 Utility typedef.
 
template<class T , class Tag = AnyMatrixTag>
constexpr bool dg::is_matrix_v = is_matrix<T, Tag>::value
 Utility typedef.
 
template<class T , class Tag = AnyPolicyTag>
constexpr bool dg::has_policy_v = has_policy<T, Tag>::value
 Utility typedef.