Changeset 92
- Timestamp:
- 01/15/08 17:28:10 (11 months ago)
- Files:
-
- trunk/core/src/shooting_star_boost_wrapper.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/core/src/shooting_star_boost_wrapper.cpp
r74 r92 44 44 std::map< int, vector< std::pair<float, std::vector<int> > >, std::less<int> > adjacent_edges; 45 45 default_color_type color; 46 47 std::size_t index; 46 48 }; 47 49 … … 135 137 graph[e].rank = 0; 136 138 graph[e].distance = 0; 139 140 graph[e].index = boost::num_edges(graph); 137 141 138 142 … … 300 304 } 301 305 302 property_map<graph_t, int Edge::*>::type edge_index = get(&Edge::id, graph);306 property_map<graph_t, std::size_t Edge::*>::type edge_index = get(&Edge::index, graph); 303 307 304 308 std::map< int, edge_descriptor, std::less<int> > predecessors;

