Ticket #3917: astar_search.patch

File astar_search.patch, 569 bytes (added by Andy Tompkins, 13 years ago)

Patch to correct the problem.

Line 
1diff C:/Documents and Settings/atompkins/My Documents/Downloads/boost_1_42_0/boost_1_42_0/boost/graph/astar_search.hpp D:/SourceSafe/includes/boost_1_42_0/boost/graph/astar_search.hpp
2241c241
3< ColorMap color, VertexIndexMap /*index_map*/,
4---
5> ColorMap color, VertexIndexMap index_map,
6247,248c247,248
7< typedef boost::vector_property_map<std::size_t> IndexInHeapMap;
8< IndexInHeapMap index_in_heap;
9---
10> typedef boost::vector_property_map<std::size_t, VertexIndexMap> IndexInHeapMap;
11> IndexInHeapMap index_in_heap(index_map);