Home
last modified time | relevance | path

Searched refs:EdgeProperties (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/libs/graph/example/
Dadjacency_list.cpp40 struct EdgeProperties struct
42 EdgeProperties(const std::string& n) : name(n) {} in EdgeProperties() function
58 EdgeProperties > in main() argument
66 property_map< Graph, std::string EdgeProperties::* >::type name in main()
67 = get(&EdgeProperties::name, g); in main()
75 add_edge(vertex(0, g), vertex(1, g), EdgeProperties("joe"), g); in main()
76 add_edge(vertex(1, g), vertex(2, g), EdgeProperties("curly"), g); in main()
77 add_edge(vertex(1, g), vertex(3, g), EdgeProperties("dick"), g); in main()
78 add_edge(vertex(2, g), vertex(4, g), EdgeProperties("tom"), g); in main()
79 add_edge(vertex(3, g), vertex(4, g), EdgeProperties("harry"), g); in main()
Dbellman-example.cpp43 struct EdgeProperties struct
66 typedef adjacency_list< vecS, vecS, directedS, no_property, EdgeProperties > in main() argument
77 property_map< Graph, int EdgeProperties::* >::type weight_pmap in main()
78 = get(&EdgeProperties::weight, g); in main()
124 << get(get(&EdgeProperties::weight, g), e) << "\""; in main()
/third_party/boost/libs/graph/test/
Dbetweenness_centrality_test.cpp26 EdgeProperties; typedef
470 property< vertex_index_t, int >, EdgeProperties > in main()
473 property< vertex_index_t, int >, EdgeProperties > in main()
/third_party/boost/libs/graph_parallel/doc/
Ddistributed_adjacency_list.rst691 …unspecified add_edge(vertex_descriptor u, vertex_descriptor v, const EdgeProperties& p, adjacency_…
692 …unspecified add_edge(vertex_name_type u, vertex_descriptor v, const EdgeProperties& p, adjacency_l…
693 …unspecified add_edge(vertex_descriptor u, vertex_name_type v, const EdgeProperties& p, adjacency_l…
694 …unspecified add_edge(vertex_name_type u, vertex_name_type v, const EdgeProperties& p, adjacency_li…