Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
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_floating_point_v<T>>>
14{
15 using value_type = T;
18};
20template<class T>
21struct TensorTraits<T, std::enable_if_t< std::is_integral_v<T>>>
22{
23 using value_type = T;
26};
27
29} //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
Types where std::is_floating_point is true.
Definition scalar_categories.h:16
Types where std::is_integral is true.
Definition scalar_categories.h:18
The vector traits.
Definition tensor_traits.h:38