Discontinuous Galerkin Library
#include "dg/algorithm.h"
Loading...
Searching...
No Matches
scalar_categories.h
Go to the documentation of this file.
1#ifndef _DG_SCALAR_CATEGORIES_
2#define _DG_SCALAR_CATEGORIES_
3
4#include "vector_categories.h"
5
6namespace dg{
7
11struct AnyScalarTag : public AnyVectorTag{};
12
14struct ArithmeticTag : public AnyScalarTag{};
18struct IntegralTag : public ArithmeticTag{};
19
21struct ComplexTag : public AnyScalarTag{};
22
23
24}//namespace dg
25
26#endif //_DG_SCALAR_CATEGORIES_
This is the namespace for all functions and classes defined and used by the discontinuous Galerkin li...
Scalar Tag base class.
Definition scalar_categories.h:11
Vector Tag base class, indicates the basic Vector/container concept.
Definition vector_categories.h:28
Types where std::is_arithmetic is true.
Definition scalar_categories.h:14
complex number type
Definition scalar_categories.h:21
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