File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -53,21 +53,21 @@ namespace pgrouting {
5353template <class G >
5454std::vector<int64_t >
5555 sloanOrdering (G &graph) {
56- typedef boost::adjacency_list<
57- boost::vecS,
58- boost::vecS,
59- boost::undirectedS,
60- boost::property<boost::vertex_color_t , boost::default_color_type,
61- boost::property<boost::vertex_degree_t , int ,
62- boost::property<boost::vertex_priority_t , int >>>> GraphType;
56+ typedef boost::adjacency_list<
57+ boost::vecS,
58+ boost::vecS,
59+ boost::undirectedS,
60+ boost::property<boost::vertex_color_t , boost::default_color_type,
61+ boost::property<boost::vertex_degree_t , int ,
62+ boost::property<boost::vertex_priority_t , int >>>> GraphType;
6363 typedef typename boost::graph_traits<typename G::graph_t >::vertex_descriptor Vertex;
6464 std::vector<int64_t >results;
6565
6666 auto i_map = boost::get (boost::vertex_index, graph.graph );
6767 auto color_map = boost::get (boost::vertex_color, graph.graph );
6868 auto degree_map = boost::make_degree_map (graph.graph );
6969 auto priority_map = boost::get (boost::vertex_priority, graph.graph );
70-
70+
7171 std::vector<Vertex> inv_perm (boost::num_vertices (graph.graph ));
7272
7373 CHECK_FOR_INTERRUPTS ();
You can’t perform that action at this time.
0 commit comments