Discontinuous Galerkin Library
#include "dg/algorithm.h"
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{};
12struct ScalarTag : public AnyScalarTag{};
13
14}//namespace dg
15
16#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, indicates the basic Scalar Tensor concept.
Definition: scalar_categories.h:11
Vector Tag base class, indicates the basic Vector/container concept.
Definition: vector_categories.h:28
Definition: scalar_categories.h:12