src/lemon/dijkstra.h
changeset 933 1b7c88fbb950
parent 911 89a4fbb99cad
child 959 c80ef5912903
equal deleted inserted replaced
18:3156b20bc543 0:b5b612d14e1d
     1 /* -*- C++ -*-
     1 /* -*- C++ -*-
     2  * src/hugo/dijkstra.h - Part of HUGOlib, a generic C++ optimization library
     2  * src/lemon/dijkstra.h - Part of LEMON, a generic C++ optimization library
     3  *
     3  *
     4  * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     4  * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     5  * (Egervary Combinatorial Optimization Research Group, EGRES).
     5  * (Egervary Combinatorial Optimization Research Group, EGRES).
     6  *
     6  *
     7  * Permission to use, modify and distribute this software is granted
     7  * Permission to use, modify and distribute this software is granted
    12  * express or implied, and with no claim as to its suitability for any
    12  * express or implied, and with no claim as to its suitability for any
    13  * purpose.
    13  * purpose.
    14  *
    14  *
    15  */
    15  */
    16 
    16 
    17 #ifndef HUGO_DIJKSTRA_H
    17 #ifndef LEMON_DIJKSTRA_H
    18 #define HUGO_DIJKSTRA_H
    18 #define LEMON_DIJKSTRA_H
    19 
    19 
    20 ///\ingroup flowalgs
    20 ///\ingroup flowalgs
    21 ///\file
    21 ///\file
    22 ///\brief Dijkstra algorithm.
    22 ///\brief Dijkstra algorithm.
    23 
    23 
    24 #include <hugo/bin_heap.h>
    24 #include <lemon/bin_heap.h>
    25 #include <hugo/invalid.h>
    25 #include <lemon/invalid.h>
    26 
    26 
    27 namespace hugo {
    27 namespace lemon {
    28 
    28 
    29 /// \addtogroup flowalgs
    29 /// \addtogroup flowalgs
    30 /// @{
    30 /// @{
    31 
    31 
    32   ///%Dijkstra algorithm class.
    32   ///%Dijkstra algorithm class.
   335     
   335     
   336   };
   336   };
   337   
   337   
   338 /// @}
   338 /// @}
   339   
   339   
   340 } //END OF NAMESPACE HUGO
   340 } //END OF NAMESPACE LEMON
   341 
   341 
   342 #endif
   342 #endif
   343 
   343 
   344 
   344