|
void | map_local_index (const typename Traits::SizeType geometry_type_index, const typename Traits::SizeType entity_index, typename Traits::TreeIndexView mi, typename Traits::ContainerIndex &ci) const |
|
template<typename ItIn , typename ItOut > |
void | map_lfs_indices (const ItIn begin, const ItIn end, ItOut out) const |
| Set last index of container indices. More...
|
|
template<typename CIOutIterator , typename DIOutIterator = DummyDOFIndexIterator> |
Traits::SizeType | extract_entity_indices (const typename Traits::DOFIndex::EntityIndex &ei, typename Traits::SizeType child_index, CIOutIterator ci_out, const CIOutIterator ci_end, DIOutIterator di_out=DIOutIterator()) const |
|
Traits::SizeType | size (const typename Traits::DOFIndex::EntityIndex &index) const |
|
Traits::SizeType | size (const typename Traits::SizeType geometry_type_index, const typename Traits::SizeType entity_index) const |
|
Traits::SizeType | size (const typename Traits::SizeType geometry_type_index, const typename Traits::SizeType entity_index, const typename Traits::SizeType child_index) const |
|
Traits::SizeType | offset (const typename Traits::SizeType geometry_type_index, const typename Traits::SizeType entity_index, const typename Traits::SizeType child_index) const |
|
template<typename Node > |
| LocalOrderingBase (Node &node, bool container_blocked, GFSData *gfs_data) |
|
bool | fixedSize () const |
|
bool | contains (const GeometryType >) const |
|
bool | contains_geometry_type (typename Traits::SizeType gt_index) const |
|
bool | contains (typename Traits::SizeType codim) const |
|
Traits::SizeType | maxLocalSize () const |
|
template<typename ES, typename DI, typename CI>
class Dune::PDELab::LocalOrderingBase< ES, DI, CI >
Entity-wise orderings.
A tree structure of this class is able to provide (multi-index) indexations for each entity in an entity set.
- Template Parameters
-
ES | Entity Set |
DI | DOFIndex |
CI | ContainerIndex |
template<typename ES , typename DI , typename CI >
template<typename ItIn , typename ItOut >
Set last index of container indices.
For a (view) list of dof indices, this method will fill or append the last index of the same ammount of container indices.
- Template Parameters
-
- Parameters
-
begin | begin iterator for (view) list of dof indices |
end | begin iterator for (view) list of dof indices |
out | begin iterator of container indices to be filled out |
template<typename ES , typename DI , typename CI >
Initial setup of the flag indicating whether a fixed size ordering is possible.
For a non-leaf ordering, a fixed size ordering is possible if all children can support it, so we implement that logic here.
- Note
- Leaf orderings will usually want to extract this a priori information from somewhere else, so they should override this method (the correct method will get called even without a virtual call, as the call happens from a TypeTree visitor that is aware of the precise type of the ordering).