//======================================================================= // Copyright 2002 Indiana University. // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek // // This file is part of the Boost Graph Library // // You should have received a copy of the License Agreement for the // Boost Graph Library along with the software; see the file LICENSE. // // Permission to modify the code and to distribute modified code is // granted, provided the text of this NOTICE is retained, a notice that // the code was modified is included with the above COPYRIGHT NOTICE and // with the COPYRIGHT NOTICE in the LICENSE file, and that the LICENSE // file is distributed with the modified code. // // LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. // By way of example, but not limitation, Licensor MAKES NO // REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY // PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE COMPONENTS // OR DOCUMENTATION WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS // OR OTHER RIGHTS. //======================================================================= #include #include #include #include typedef boost::default_constructible_archetype< boost::sgi_assignable_archetype<> > dist_value; // So generate_infinity works... namespace std { template <> class numeric_limits { public: static dist_value max BOOST_PREVENT_MACRO_SUBSTITUTION () { return boost::static_object::get(); } }; } dist_value abs(const dist_value& x) { return x; } std::size_t abs(std::size_t x) { return x; } int main() { using namespace boost; typedef default_constructible_archetype< sgi_assignable_archetype< equality_comparable_archetype<> > > vertex_t; { typedef incidence_graph_archetype IncidenceGraph; typedef vertex_list_graph_archetype graph_t; graph_t& g = static_object::get(); vertex_t s; typedef graph_traits::edge_descriptor edge_t; readable_property_map_archetype weight; readable_property_map_archetype index; read_write_property_map_archetype distance; dijkstra_shortest_paths(g, s, vertex_index_map(index). weight_map(weight). distance_map(distance)); } { typedef incidence_graph_archetype IncidenceGraph; typedef vertex_list_graph_archetype Graph; vertex_t s; typedef graph_traits::edge_descriptor edge_t; readable_property_map_archetype weight; typedef property_graph_archetype graph_t; graph_t& g = static_object::get(); read_write_property_map_archetype pred; dijkstra_shortest_paths(g, s, predecessor_map(pred). weight_map(weight)); } { typedef incidence_graph_archetype IncidenceGraph; typedef vertex_list_graph_archetype Graph; vertex_t s; typedef property_graph_archetype graph_t; graph_t& g = static_object::get(); read_write_property_map_archetype pred; readable_property_map_archetype index; dijkstra_shortest_paths(g, s, predecessor_map(pred). vertex_index_map(index)); } { typedef incidence_graph_archetype IncidenceGraph; typedef vertex_list_graph_archetype graph_t; graph_t& g = static_object::get(); vertex_t s; typedef graph_traits::edge_descriptor edge_t; readable_property_map_archetype weight; readable_property_map_archetype index; read_write_property_map_archetype color; read_write_property_map_archetype distance; typedef binary_function_archetype Combine; Combine combine = static_object::get(); typedef binary_predicate_archetype Compare; Compare compare = static_object::get(); dijkstra_visitor<> vis; dijkstra_shortest_paths(g, s, color_map(color). vertex_index_map(index). weight_map(weight). distance_map(distance). distance_combine(combine). distance_compare(compare). visitor(vis)); } return 0; }