Changeset 74
- Timestamp:
- 12/13/07 15:18:16 (1 year ago)
- Files:
-
- trunk/core/src/edge_visitors.hpp (modified) (2 diffs)
- trunk/core/src/shooting_star_boost_wrapper.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/core/src/edge_visitors.hpp
r43 r74 1 //======================================================================= 2 // Copyright 1997, 1998, 1999, 2000 University of Notre Dame. 3 // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek 4 // 5 // Distributed under the Boost Software License, Version 1.0. (See 6 // accompanying file LICENSE_1_0.txt or copy at 7 // http://www.boost.org/LICENSE_1_0.txt) 8 //======================================================================= 9 // 10 // Revision History: 11 // 01 April 2001: Modified to use new <boost/limits.hpp> header. (JMaddock) 12 // 13 #ifndef BOOST_GRAPH_GRAPH_SEARCH_EDGE_VISITORS_HPP 14 #define BOOST_GRAPH_GRAPH_SEARCH_EDGE_VISITORS_HPP 1 #ifndef EDGE_VISITORS_HPP 2 #define EDGE_VISITORS_HPP 15 3 16 4 #include <iosfwd> … … 21 9 #include <boost/graph/detail/is_same.hpp> 22 10 23 namespace boost { 11 namespace boost 12 { 24 13 25 14 //======================================================================== 26 15 // Event Tags 27 16 28 namespace detail { 17 namespace detail 18 { 29 19 // For partial specialization workaround 30 20 enum event_edge_visitor_enum trunk/core/src/shooting_star_boost_wrapper.cpp
r72 r74 83 83 private: 84 84 Edge m_goal; 85 int e_max_id;86 85 }; 87 86 … … 363 362 364 363 if(graph[e].id > e_max_id) 365 graph[e].id -= e_max_id; 366 364 { 365 graph[e].id -= e_max_id; 366 } 367 367 368 (*path)[j].edge_id = graph[e].id; 368 369 (*path)[j].cost = graph[e].cost;

