GridFormat 0.2.1
I/O-Library for grid-like data structures
Loading...
Searching...
No Matches
GridFormat::Concepts::StructuredEntitySet Concept Reference

Basic concept for all grids with a structured topology. We need to know the extents of the grid and need to be able to retrieve the location of a cell/point in the topology.

#include <concepts.hpp>

Concept definition

template<typename T>
GridDetail::ExposesExtents<T> and
GridDetail::ExposesCellLocation<T> and
GridDetail::ExposesPointLocation<T> and
all_equal<
static_size<GridDetail::Extents<T>>,
static_size<GridDetail::CellLocation<T>>,
static_size<GridDetail::PointLocation<T>>
>
Basic concept all grids must fulfill. We must be able to iterate over a grid's cells & points.
Definition: concepts.hpp:28
Basic concept for all grids with a structured topology. We need to know the extents of the grid and n...
Definition: concepts.hpp:38