Home
last modified time | relevance | path

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

/third_party/boost/libs/graph/test/
Dtest_graphs.cpp30 typedef undirected_graph< VertexBundle, EdgeBundle, GraphBundle > Graph; in main()
45 typedef directed_graph< VertexBundle, EdgeBundle, GraphBundle > Graph; in main()
61 typedef adjacency_list< vecS, vecS, undirectedS, VertexBundle, in main()
77 typedef adjacency_list< vecS, vecS, directedS, VertexBundle, EdgeBundle, in main()
95 typedef adjacency_list< vecS, vecS, bidirectionalS, VertexBundle, in main()
113 typedef adjacency_list< vecS, listS, bidirectionalS, VertexBundle, in main()
130 typedef adjacency_matrix< directedS, VertexBundle, EdgeBundle, in main()
145 typedef adjacency_matrix< directedS, VertexBundle, EdgeBundle > Graph; in main()
181 typedef compressed_sparse_row_graph< directedS, VertexBundle, in main()
194 typedef compressed_sparse_row_graph< bidirectionalS, VertexBundle, in main()
Dtest_graph.hpp74 struct VertexBundle struct
76 VertexBundle() : value() {} in VertexBundle() argument
77 VertexBundle(int n) : value(n) {} in VertexBundle() function
79 bool operator==(VertexBundle const& x) const { return value == x.value; } in operator ==() argument
80 bool operator<(VertexBundle const& x) const { return value < x.value; } in operator <() argument
Dtest_properties.hpp51 VertexBundle& b = g[v]; in test_vertex_bundle()
56 typedef typename property_map< Graph, int VertexBundle::* >::type BundleMap; in test_vertex_bundle()
58 BundleMap map = get(&VertexBundle::value, g); in test_vertex_bundle()
62 typedef typename property_map< Graph, int VertexBundle::* >::const_type in test_vertex_bundle()
66 ConstBundleMap cmap = get(&VertexBundle::value, (Graph const&)g); in test_vertex_bundle()
Dsubgraph.cpp200 typedef adjacency_list< vecS, vecS, directedS, VertexBundle, in main()
208 typedef property_map< Graph, int VertexBundle::* >::type BundleMap; in main()
209 BundleMap map = get(&VertexBundle::value, g); in main()