|
dune-grid
2.11
|
|
Variables | |
| template<class S > | |
| concept | Dune::Concept::EntitySeed |
| Model of an entity seed. More... | |
| template<class E > | |
| concept | Dune::Concept::EntityGeneral |
| Model of a grid entity for any codimension. More... | |
| template<class E > | |
| concept | Dune::Concept::EntityExtended |
| Model of a grid entity with extended requirements for codimension 0. More... | |
| template<class E > | |
| concept | Dune::Concept::Entity = EntityGeneral<E> && ((E::codimension != 0) || EntityExtended<E>) |
| Model of a grid entity. More... | |
| template<class It > | |
| concept | Dune::Concept::EntityIterator |
| Model of an entity iterator. More... | |
| template<class G > | |
| concept | Dune::Concept::Geometry |
| Model of a geometry object. More... | |
| template<class G > | |
| concept | Dune::Concept::Grid |
Requirements for implementations of the Dune::Grid interface.The Grid concept defines interface requirements of a parallel, in general nonconforming, locally refined and hierarchical finite element mesh. It consists of sub-concepts for Dune::Concept::GridView, Dune::Concept::IndexSet, Dune::Concept::IdSet, and Dune::Concept::Intersection. More... | |
| template<class GV > | |
| concept | Dune::Concept::GridView |
| Model of a grid view. More... | |
| template<class IS > | |
| concept | Dune::Concept::IndexSet |
| Model of an index set. More... | |
| template<class IS > | |
| concept | Dune::Concept::IdSet |
| Model of an id set. More... | |
| template<class I > | |
| concept | Dune::Concept::Intersection |
| Model of an intersection. More... | |
| template<class It > | |
| concept | Dune::Concept::IntersectionIterator |
| Model of an intersection iterator. More... | |
| template<class MB , class DataType > | |
| concept | Dune::Concept::MessageBuffer |
| Model of a message buffer. More... | |
| concept Dune::Concept::Entity = EntityGeneral<E> && ((E::codimension != 0) || EntityExtended<E>) |
Model of a grid entity.
Codimension 0 entities are required to have an extended interface. Dune::Entity is a template for this model.
| concept Dune::Concept::EntityExtended |
Model of a grid entity with extended requirements for codimension 0.
Dune::Entity of codimension 0 is a template for this model.
typename E::template Codim<0>Entity is required to satisfy the EntityGeneral concept only if the type exists (i.e. substitution failure is allowed). | concept Dune::Concept::EntityGeneral |
Model of a grid entity for any codimension.
Dune::Entity is a template for this model.
| concept Dune::Concept::EntityIterator |
Model of an entity iterator.
Dune::EntityIterator is a template for this model
| concept Dune::Concept::EntitySeed |
Model of an entity seed.
Dune::EntitySeed is a template for this model
| concept Dune::Concept::Geometry |
Model of a geometry object.
Dune::Geometry is a template for this model
| concept Dune::Concept::Grid |
Requirements for implementations of the Dune::Grid interface.The Grid concept defines interface requirements of a parallel, in general nonconforming, locally refined and hierarchical finite element mesh. It consists of sub-concepts for Dune::Concept::GridView, Dune::Concept::IndexSet, Dune::Concept::IdSet, and Dune::Concept::Intersection.
See Dune::Grid for an "abstract" interface definition of this concept.
Dune::AlbertaGrid<dim,dow>Dune::GeometryGrid<G,F> if G is a model of Dune::Concept::Grid.Dune::IdentityGrid<G> if G is a model of Dune::Concept::Grid.Dune::OneDGridDune::UGGrid<dim>Dune::YaspGrid<dim, Coordinates> | concept Dune::Concept::GridView |
Model of a grid view.
Dune::GridView is a template for this model
| concept Dune::Concept::IdSet |
Model of an id set.
Dune::Grid::GlobalIdSet and Dune::Grid::LocalIdSet are templates for this model
typename IS::template Codim<0>Entity is required to satisfy the EntityGeneral concept only if the type exists (i.e. substitution failure is allowed). | concept Dune::Concept::IndexSet |
Model of an index set.
Dune::Grid::LevelIndexSet and Dune::Grid::LeafIndexSet are templates for this model
typename IS::template Codim<0>Entity is required to satisfy the EntityGeneral concept only if the type exists (i.e. substitution failure is allowed). | concept Dune::Concept::Intersection |
Model of an intersection.
Dune::Grid::Intersection is a template for this model
| concept Dune::Concept::IntersectionIterator |
Model of an intersection iterator.
Dune::IntersectionIterator is a template for this model
| concept Dune::Concept::MessageBuffer |
Model of a message buffer.
1.8.14