1#ifndef QUGAR_LIBRARY_CONCEPTS_HPP
2#define QUGAR_LIBRARY_CONCEPTS_HPP
14template<
int dim,
int dim_aux>
15concept Is2Dor3D = dim == dim_aux && (dim == 2 || dim == 3);
18template<
int dim,
int dim_aux>
19concept Is1D = dim == dim_aux && dim == 1;
Checks if the given dimension is 1.
Definition concepts.hpp:19
Checks if the given dimension is 2 or 3.
Definition concepts.hpp:15
QUGaR's main namespace.
Definition affine_transf.hpp:28