1 | diff 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
|
---|
2 | 241c241
|
---|
3 | < ColorMap color, VertexIndexMap /*index_map*/,
|
---|
4 | ---
|
---|
5 | > ColorMap color, VertexIndexMap index_map,
|
---|
6 | 247,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);
|
---|