src/include/dijkstra.h
changeset 456 02c28d3cf97b
parent 433 d9fac1497298
child 459 68e6873f421a
equal deleted inserted replaced
10:f8fecd210129 11:c58ef2bf9abd
    34   ///length if it is necessary. The default map type is
    34   ///length if it is necessary. The default map type is
    35   ///\ref GraphSkeleton::EdgeMap "Graph::EdgeMap<int>"
    35   ///\ref GraphSkeleton::EdgeMap "Graph::EdgeMap<int>"
    36   ///\param Heap The heap type used by the %Dijkstra
    36   ///\param Heap The heap type used by the %Dijkstra
    37   ///algorithm. The default
    37   ///algorithm. The default
    38   ///is using \ref BinHeap "binary heap".
    38   ///is using \ref BinHeap "binary heap".
    39   
    39   ///
       
    40   ///\author Jacint Szabo
    40 #ifdef DOXYGEN
    41 #ifdef DOXYGEN
    41   template <typename Graph,
    42   template <typename Graph,
    42 	    typename LengthMap,
    43 	    typename LengthMap,
    43 	    typename Heap>
    44 	    typename Heap>
    44 #else
    45 #else