fpmas 1.6
von_neumann_range.h
Go to the documentation of this file.
1#ifndef FPMAS_VON_NEUMANN_RANGE_H
2#define FPMAS_VON_NEUMANN_RANGE_H
3
8#include "moore.h"
9#include "von_neumann.h"
10
11namespace fpmas { namespace model {
12
21 template<typename GridConfig>
23
33 template<typename GridConfig>
35
40 template<typename CellType>
54 return {0, std::max(range.getSize(), 0l)};
55 }
56 };
57
62 template<typename CellType>
78 return {0, std::max(range.getSize(), 0l)};
79 }
80 };
81
107 template<typename GridConfig>
109
110
111
112}}
113#endif
Definition: grid.h:623
Definition: fpmas.cpp:3
Definition: grid.h:507
Definition: grid.h:548
DiscretePoint operator()(const GridRange< MooreGrid< CellType >, VonNeumannRangeConfig< MooreGrid< CellType > > > &range) const
Definition: von_neumann_range.h:75
DiscretePoint operator()(const GridRange< VonNeumannGrid< CellType >, VonNeumannRangeConfig< VonNeumannGrid< CellType > > > &range) const
Definition: von_neumann_range.h:53
Definition: von_neumann_range.h:22