Dune Core Modules (2.4.1)
Attaches properties to the vertices of a graph. More...
#include <dune/istl/paamg/graph.hh>
Public Types | |
| typedef G | Graph |
| The graph we attach properties to. | |
| typedef Graph::VertexDescriptor | VertexDescriptor |
| The vertex descriptor. | |
| typedef Graph::EdgeDescriptor | EdgeDescriptor |
| The edge descritor. | |
| typedef VP | VertexProperties |
| The type of the properties of the vertices. | |
| typedef VM | VertexMap |
| The type of the map for converting the VertexDescriptor to std::size_t. More... | |
| typedef Graph::EdgeIterator | EdgeIterator |
| The type of the mutable edge iterator. | |
| typedef Graph::ConstEdgeIterator | ConstEdgeIterator |
| The type of the constant edge iterator. | |
| typedef VertexIteratorT< VertexPropertiesGraph< Graph, VertexProperties, VM > > | VertexIterator |
| The type of the mutable Vertex iterator. | |
| typedef VertexIteratorT< const VertexPropertiesGraph< Graph, VertexProperties, VM > > | ConstVertexIterator |
| The type of the constant Vertex iterator. | |
Public Member Functions | |
| EdgeIterator | beginEdges (const VertexDescriptor &source) |
| Get the mutable edge iterator over edges starting at a vertex. More... | |
| EdgeIterator | endEdges (const VertexDescriptor &source) |
| Get the mutable edge iterator over edges starting at a vertex. More... | |
| ConstEdgeIterator | beginEdges (const VertexDescriptor &source) const |
| Get the mutable edge iterator over edges starting at a vertex. More... | |
| ConstEdgeIterator | endEdges (const VertexDescriptor &source) const |
| Get the mutable edge iterator over edges starting at a vertex. More... | |
| VertexIterator | begin () |
| Get an iterator over the vertices. More... | |
| VertexIterator | end () |
| Get an iterator over the vertices. More... | |
| ConstVertexIterator | begin () const |
| Get an iterator over the vertices. More... | |
| ConstVertexIterator | end () const |
| Get an iterator over the vertices. More... | |
| VertexProperties & | getVertexProperties (const VertexDescriptor &vertex) |
| Get the properties associated with a vertex. More... | |
| const VertexProperties & | getVertexProperties (const VertexDescriptor &vertex) const |
| Get the properties associated with a vertex. More... | |
| const Graph & | graph () const |
| Get the graph the properties are attached to. More... | |
| std::size_t | noVertices () const |
| Get the number of vertices in the graph. | |
| std::size_t | noEdges () const |
| Get the number of edges in the graph. | |
| VertexDescriptor | maxVertex () const |
| Get the maximal vertex descriptor. More... | |
| VertexPropertiesGraph (Graph &graph, const VertexMap vmap=VertexMap()) | |
| Constructor. More... | |
Detailed Description
class Dune::Amg::VertexPropertiesGraph< G, VP, VM >
Attaches properties to the vertices of a graph.
Member Typedef Documentation
◆ VertexMap
| typedef VM Dune::Amg::VertexPropertiesGraph< G, VP, VM >::VertexMap |
The type of the map for converting the VertexDescriptor to std::size_t.
Has to provide the following method: std::size_t operator[](const VertexDescriptor& vertex)
The following condition has to be met: Let v1 and v2 be two vertex descriptors with v1 < v2 and map be the index map. Then map[v1]<map[v2] has to hold.
Constructor & Destructor Documentation
◆ VertexPropertiesGraph()
| Dune::Amg::VertexPropertiesGraph< G, VP, VM >::VertexPropertiesGraph | ( | Graph & | graph, |
| const VertexMap | vmap = VertexMap() |
||
| ) |
Constructor.
- Parameters
-
graph The graph we attach properties to. vmap The vertex map.
Member Function Documentation
◆ begin() [1/2]
| VertexIterator Dune::Amg::VertexPropertiesGraph< G, VP, VM >::begin | ( | ) |
Get an iterator over the vertices.
- Returns
- A vertex Iterator positioned at the first vertex.
Referenced by Dune::Amg::PropertiesGraph< G, VP, EP, VM, EM >::endEdges().
◆ begin() [2/2]
| ConstVertexIterator Dune::Amg::VertexPropertiesGraph< G, VP, VM >::begin | ( | ) | const |
Get an iterator over the vertices.
- Returns
- A vertex Iterator positioned at the first vertex.
◆ beginEdges() [1/2]
| EdgeIterator Dune::Amg::VertexPropertiesGraph< G, VP, VM >::beginEdges | ( | const VertexDescriptor & | source | ) |
Get the mutable edge iterator over edges starting at a vertex.
- Returns
- An edge iterator over edges starting at a vertex positioned at the first edge.
◆ beginEdges() [2/2]
| ConstEdgeIterator Dune::Amg::VertexPropertiesGraph< G, VP, VM >::beginEdges | ( | const VertexDescriptor & | source | ) | const |
Get the mutable edge iterator over edges starting at a vertex.
- Returns
- An edge iterator over edges starting at a vertex positioned at the first edge.
◆ end() [1/2]
| VertexIterator Dune::Amg::VertexPropertiesGraph< G, VP, VM >::end | ( | ) |
Get an iterator over the vertices.
- Returns
- A vertex Iterator positioned behind the last vertex.
Referenced by Dune::Amg::PropertiesGraph< G, VP, EP, VM, EM >::endEdges().
◆ end() [2/2]
| ConstVertexIterator Dune::Amg::VertexPropertiesGraph< G, VP, VM >::end | ( | ) | const |
Get an iterator over the vertices.
- Returns
- A vertex Iterator positioned behind the last vertex.
◆ endEdges() [1/2]
| EdgeIterator Dune::Amg::VertexPropertiesGraph< G, VP, VM >::endEdges | ( | const VertexDescriptor & | source | ) |
Get the mutable edge iterator over edges starting at a vertex.
- Returns
- An edge iterator over edges starting at a vertex positioned after the last edge.
◆ endEdges() [2/2]
| ConstEdgeIterator Dune::Amg::VertexPropertiesGraph< G, VP, VM >::endEdges | ( | const VertexDescriptor & | source | ) | const |
Get the mutable edge iterator over edges starting at a vertex.
- Returns
- An edge iterator over edges starting at a vertex positioned after the last edge.
◆ getVertexProperties() [1/2]
| VertexProperties & Dune::Amg::VertexPropertiesGraph< G, VP, VM >::getVertexProperties | ( | const VertexDescriptor & | vertex | ) |
Get the properties associated with a vertex.
- Parameters
-
vertex The descriptor identifying the vertex.
- Returns
- The properties of the vertex.
◆ getVertexProperties() [2/2]
| const VertexProperties & Dune::Amg::VertexPropertiesGraph< G, VP, VM >::getVertexProperties | ( | const VertexDescriptor & | vertex | ) | const |
Get the properties associated with a vertex.
- Parameters
-
vertex The descriptor identifying the vertex.
- Returns
- The properties of the vertex.
◆ graph()
| const Graph & Dune::Amg::VertexPropertiesGraph< G, VP, VM >::graph | ( | ) | const |
Get the graph the properties are attached to.
- Returns
- The underlying graph.
◆ maxVertex()
| VertexDescriptor Dune::Amg::VertexPropertiesGraph< G, VP, VM >::maxVertex | ( | ) | const |
Get the maximal vertex descriptor.
- Returns
- The minimum value v such that for all vertices w in the graph w<v holds.
The documentation for this class was generated from the following file:
- dune/istl/paamg/graph.hh
|
Legal Statements / Impressum |
Hosted by TU Dresden & Uni Heidelberg |
generated with Hugo v0.111.3
(Nov 1, 23:35, 2025)