Discontinuous Galerkin Library
#include "dg/algorithm.h"
tensor_traits_scalar.h
Go to the documentation of this file.
1#pragma once
2
3#include "scalar_categories.h"
4#include "tensor_traits.h"
5
6namespace dg
7{
10
12template<class T>
13struct TensorTraits<T, std::enable_if_t< std::is_arithmetic<T>::value>>
14{
15 using value_type = T;
18};
19
21} //namespace dg
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Execution Policy base class.
Definition: execution_policy.h:18
Definition: scalar_categories.h:12
The vector traits.
Definition: tensor_traits.h:31