Vertex for adjacency list for the hierarchical_graph with property.It contains a descriptor and an adjacency list of edges, and extends the hgraph_vertex_impl class with data/methods related to the property field.
More...
|
| hgraph_vertex_property_impl (this_type const &other) |
|
| hgraph_vertex_property_impl (vertex_descriptor const &vd, Property const &p) |
|
property_type & | property () |
|
property_type const & | property () const |
|
child_set_type | children () const |
|
void | set_child (child_set_type const &children) |
|
void | add_child (vertex_descriptor const &child) |
| Adds a child to this vertex. More...
|
|
void | add_child (child_set_type const &children) |
| Adds a set of children to this vertex. More...
|
|
void | delete_child (vertex_descriptor const &child) |
| Deletes a child from this vertex. More...
|
|
void | delete_child (child_set_type const &children) |
| Deletes a set of children from this vertex. More...
|
|
vertex_descriptor const & | descriptor (void) const noexcept |
| Returns the descriptor of this vertex. More...
|
|
edgelist_type & | edgelist (void) noexcept |
| Returns the edge-list of this vertex.
|
|
void | edgelist (edgelist_type const *const edgelist) |
| Sets the edge-list of this vertex.
|
|
edgelist_type const & | edgelist (void) const noexcept |
| Returns the edge-list of this vertex.
|
|
edgelist_type & | edges (void) noexcept |
| Returns the edge-list of this vertex.
|
|
void | clear (void) |
| Clears the edge-list of this vertex.
|
|
|
typedef VD | vertex_descriptor |
|
typedef Property | property_type |
|
typedef domset1D< VD > | child_set_type |
|
typedef AdjList | edgelist_type |
|
template<class VD, class Property, class AdjList>
class stapl::sequential::hgraph_vertex_property_impl< VD, Property, AdjList >
Vertex for adjacency list for the hierarchical_graph with property.
It contains a descriptor and an adjacency list of edges, and extends the hgraph_vertex_impl class with data/methods related to the property field.
- Template Parameters
-
VD | Vertex descriptor type for the graph. |
Property | Property type for the vertex. |
AdjList | Type of the edgelist for storing edges. |
◆ add_child() [1/2]
template<class VD , class AdjList >
Adds a child to this vertex.
- Parameters
-
child | The descriptor of the new child. |
◆ add_child() [2/2]
template<class VD , class AdjList >
Adds a set of children to this vertex.
- Parameters
-
children | The domain of the new children. |
◆ delete_child() [1/2]
template<class VD , class AdjList >
Deletes a child from this vertex.
- Parameters
-
child | The descriptor of the child. |
◆ delete_child() [2/2]
template<class VD , class AdjList >
Deletes a set of children from this vertex.
- Parameters
-
children | The domain of the children. |
◆ descriptor()
template<typename VD , typename AdjList >
Returns the descriptor of this vertex.
The vertex descriptor can't be changed after the vertex is created.
The documentation for this class was generated from the following file:
- hgraph_adj_list_vertex_edge.h