Creates an DIRECTED, MULTIEDGES graph.Static graphs do not allow addition or deletion of vertices. The number of vertices must be known at construction. Edges may be added/deleted. More...
Public Member Functions | |
Constructors | |
| multidigraph (size_t const &n=0, typename base_type::vertex_property const &default_value=typename base_type::vertex_property()) | |
| Creates a graph with a given size and constructs all elements with a default value for vertex property. More... | |
| multidigraph (typename base_type::partition_type const &ps, typename base_type::vertex_property const &default_value=typename base_type::vertex_property()) | |
| Creates a graph with a given partition and default value for vertex property. More... | |
| boost::shared_ptr< this_type > | shared_from_this () |
Creates an DIRECTED, MULTIEDGES graph.
Static graphs do not allow addition or deletion of vertices. The number of vertices must be known at construction. Edges may be added/deleted.
| VertexP | type of property for the vertex. Default is no_property. Must be default assignable, copyable and assignable. |
| EdgeP | type of property for the edge. Default is no_property. Must be default assignable, copyable and assignable. |
| PS | Partition strategy that defines how to partition the original domain into subdomains. The default partition is balanced_partition. |
| Map | Mapper that defines how to map the subdomains produced by the partition to locations. The default mapper is mapper. |
| Traits | A traits class that defines customizable components of graph, such as the domain type, base container type, storage, etc. The default traits class is static_graph_traits. |
| stapl::multidigraph< OptionalParams >::multidigraph | ( | size_t const & | n = 0, |
| typename base_type::vertex_property const & | default_value = typename base_type::vertex_property() |
||
| ) |
Creates a graph with a given size and constructs all elements with a default value for vertex property.
| stapl::multidigraph< OptionalParams >::multidigraph | ( | typename base_type::partition_type const & | ps, |
| typename base_type::vertex_property const & | default_value = typename base_type::vertex_property() |
||
| ) |
Creates a graph with a given partition and default value for vertex property.
1.8.13