src/lemon/dfs.h
changeset 923 acbef5dd0e65
parent 911 89a4fbb99cad
child 946 c94ef40a22ce
equal deleted inserted replaced
4:99fa0273a21a 0:035fb68913be
     1 /* -*- C++ -*-
     1 /* -*- C++ -*-
     2  * src/hugo/dfs.h - Part of HUGOlib, a generic C++ optimization library
     2  * src/lemon/dfs.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_DFS_H
    17 #ifndef LEMON_DFS_H
    18 #define HUGO_DFS_H
    18 #define LEMON_DFS_H
    19 
    19 
    20 ///\ingroup flowalgs
    20 ///\ingroup flowalgs
    21 ///\file
    21 ///\file
    22 ///\brief %DFS algorithm.
    22 ///\brief %DFS algorithm.
    23 ///
    23 ///
    24 ///\todo Revise Manual.
    24 ///\todo Revise Manual.
    25 
    25 
    26 #include <hugo/bin_heap.h>
    26 #include <lemon/bin_heap.h>
    27 #include <hugo/invalid.h>
    27 #include <lemon/invalid.h>
    28 
    28 
    29 namespace hugo {
    29 namespace lemon {
    30 
    30 
    31 /// \addtogroup flowalgs
    31 /// \addtogroup flowalgs
    32 /// @{
    32 /// @{
    33 
    33 
    34   ///%DFS algorithm class.
    34   ///%DFS algorithm class.
   281     
   281     
   282   };
   282   };
   283   
   283   
   284 /// @}
   284 /// @}
   285   
   285   
   286 } //END OF NAMESPACE HUGO
   286 } //END OF NAMESPACE LEMON
   287 
   287 
   288 #endif
   288 #endif
   289 
   289 
   290 
   290