Home
last modified time | relevance | path

Searched refs:indexmap (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/libs/graph/example/
Dremove_edge_if_bidir.cpp84 property_map< Graph, vertex_index_t >::type indexmap = get(vertex_index, g); in main() local
87 print_graph(g, indexmap); in main()
88 print_edges2(g, indexmap, weight); in main()
93 print_graph(g, indexmap); in main()
94 print_edges2(g, indexmap, weight); in main()
98 print_graph(g, indexmap); in main()
99 print_edges2(g, indexmap, weight); in main()
Dprim-example.cpp42 property_map< Graph, vertex_index_t >::type indexmap = get(vertex_index, g); in main() local
44 weightmap, indexmap, default_dijkstra_visitor()); in main()
Dmax_flow.cpp77 property_map< Graph, vertex_index_t >::type indexmap = get(vertex_index, g); in main() local
79 g, s, t, capacity, residual_capacity, rev, indexmap); in main()
Dpush-relabel-eg.cpp68 property_map< Graph, vertex_index_t >::type indexmap = get(vertex_index, g); in main() local
70 g, s, t, capacity, residual_capacity, rev, indexmap); in main()
Dprim-telephone.cpp47 property_map< Graph, vertex_index_t >::type indexmap = get(vertex_index, g); in main() local
50 weight, indexmap, default_dijkstra_visitor()); in main()
Ddijkstra-example-listS.cpp51 property_map< graph_t, vertex_index_t >::type indexmap in main() local
57 indexmap[*i] = c; in main()
Dospf-example.cpp75 property_map< Graph, vertex_index_t >::type indexmap = get(vertex_index, g); in main() local
77 indexmap, std::less< int >(), closed_plus< int >(), in main()
/third_party/boost/boost/graph/
Dmetric_tsp_approx.hpp156 WeightMap weightmap, VertexIndexMap indexmap, TSPVertexVisitor vis) in metric_tsp_approx_from_vertex() argument
188 PredPMap pred_pmap(preds.begin(), indexmap); in metric_tsp_approx_from_vertex()
192 root_vertex(start).vertex_index_map(indexmap).weight_map(weightmap)); in metric_tsp_approx_from_vertex()
201 if (indexmap[*vi] != cnt) in metric_tsp_approx_from_vertex()
203 add_edge(*next(mst_verts.first, indexmap[*vi]), in metric_tsp_approx_from_vertex()
216 traverse_tree(indexmap[start], t, tvis); in metric_tsp_approx_from_vertex()