dune-grid
2.4.1-rc2
|
DefaultIndexSet creates an index set by using the grids persistent container an a given pair of iterators. More...
#include <dune/grid/alugrid/common/defaultindexsets.hh>
Classes | |
struct | Index |
Public Types | |
enum | { ncodim = GridType::dimension + 1 } |
typedef unsigned int | IndexType |
type of index More... | |
typedef PersistentContainer< GridType, Index > | PersistentContainerType |
typedef std::vector< PersistentContainerType * > | PersistentContainerVectorType |
typedef TypesImp | Types |
iterator range for geometry types in domain More... | |
Public Member Functions | |
DefaultIndexSet (const GridType &grid, const IteratorType &begin, const IteratorType &end, const int level=-1) | |
~DefaultIndexSet () | |
desctructor deleting persistent containers More... | |
const PersistentContainerType & | indexContainer (const size_t codim) const |
PersistentContainerType & | indexContainer (const size_t codim) |
template<class EntityType > | |
IndexType | index (const EntityType &en) const |
return LevelIndex of given entity More... | |
template<int cd> | |
IndexType | index (const typename GridImp::template Codim< cd >::Entity &en) const |
return LevelIndex of given entity More... | |
template<int cc> | |
IndexType | subIndex (const typename remove_const< GridImp >::type::Traits::template Codim< cc >::Entity &e, int i, unsigned int codim) const |
template<class EntityType > | |
bool | contains (const EntityType &en) const |
returns true if this set provides an index for given entity More... | |
IndexType | size (int codim) const |
return size of IndexSet for a given level and codim More... | |
IndexType | size (GeometryType type) const |
void | calcNewIndex (const IteratorType &begin, const IteratorType &end) |
std::vector< GeometryType > | types (int codim) const |
const std::vector< GeometryType > & | geomTypes (int codim) const |
deliver all geometry types used in this grid More... | |
bool | containsIndex (const int cd, const int idx) const |
returns true if this set provides an index for given entity More... | |
Index access from entity | |
IndexType | index (const typename Traits::template Codim< cc >::Entity &e) const |
Map entity to index. The result of calling this method with an entity that is not in the index set is undefined. More... | |
IndexType | index (const Entity &e) const |
Map entity to index. Easier to use than the above because codimension template parameter need not be supplied explicitly. The result of calling this method with an entity that is not in the index set is undefined. More... | |
IndexType | subIndex (const typename Traits::template Codim< cc >::Entity &e, int i, unsigned int codim) const |
Map a subentity to an index. More... | |
IndexType | subIndex (const Entity &e, int i, unsigned int codim) const |
Map a subentity to an index. More... | |
Access to entity set | |
bool | contains (const Entity &e) const |
Return true if the given entity is contained in ![]() | |
Static Public Attributes | |
static const int | dimension |
dimension of the grid (maximum allowed codimension) More... | |
DefaultIndexSet creates an index set by using the grids persistent container an a given pair of iterators.
typedef unsigned int Dune::DefaultIndexSet< GridImp, IteratorImp >::IndexType |
type of index
typedef PersistentContainer< GridType, Index > Dune::DefaultIndexSet< GridImp, IteratorImp >::PersistentContainerType |
typedef std::vector< PersistentContainerType* > Dune::DefaultIndexSet< GridImp, IteratorImp >::PersistentContainerVectorType |
|
inherited |
iterator range for geometry types in domain
|
inline |
create index set by using the given begin and end iterator for the given level (level == -1 means leaf level)
|
inline |
desctructor deleting persistent containers
|
inline |
do calculation of the index set, has to be called when grid was changed or if index set is created
|
inline |
returns true if this set provides an index for given entity
|
inlineinherited |
Return true if the given entity is contained in .
|
inline |
returns true if this set provides an index for given entity
|
inline |
deliver all geometry types used in this grid
|
inlineinherited |
Map entity to index. The result of calling this method with an entity that is not in the index set is undefined.
e | Reference to codim cc entity, where cc is the template parameter of the function. |
|
inlineinherited |
Map entity to index. Easier to use than the above because codimension template parameter need not be supplied explicitly. The result of calling this method with an entity that is not in the index set is undefined.
e | Reference to codim cc entity. Since entity knows its codimension, automatic extraction is possible. |
|
inline |
return LevelIndex of given entity
|
inline |
return LevelIndex of given entity
|
inline |
|
inline |
|
inline |
return size of IndexSet for a given level and codim
|
inline |
return size of IndexSet for a given level and codim this method is to be revised
|
inlineinherited |
Map a subentity to an index.
The result of calling this method with an entity that is not in the index set is undefined.
cc | codimension of the entity |
[in] | e | reference to codimension cc entity |
[in] | i | number subentity of e within the codimension |
[in] | codim | codimension of the subentity we're interested in (must satisfy cc <= codim <= dimension) |
|
inlineinherited |
Map a subentity to an index.
The result of calling this method with an entity that is not in the index set is undefined.
Entity | type of entity (must be GridImp::Codim< cc >::Entity for some cc) |
[in] | e | reference to entity |
[in] | i | number subentity of e within the codimension |
[in] | codim | codimension of the subentity we're interested in |
|
inline |
return subIndex (LevelIndex) for a given Entity of codim = 0 and a given SubEntity codim and number of SubEntity
|
inline |
|
staticinherited |
dimension of the grid (maximum allowed codimension)