src/lemon/bfs.h
changeset 921 818510fa3d99
parent 911 89a4fbb99cad
child 946 c94ef40a22ce
equal deleted inserted replaced
5:7f9329b5c935 0:a2fe3e7d30df
     1 /* -*- C++ -*-
     1 /* -*- C++ -*-
     2  * src/hugo/bfs.h - Part of HUGOlib, a generic C++ optimization library
     2  * src/lemon/bfs.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_BFS_H
    17 #ifndef LEMON_BFS_H
    18 #define HUGO_BFS_H
    18 #define LEMON_BFS_H
    19 
    19 
    20 ///\ingroup flowalgs
    20 ///\ingroup flowalgs
    21 ///\file
    21 ///\file
    22 ///\brief Bfs algorithm.
    22 ///\brief Bfs 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   ///%BFS algorithm class.
    34   ///%BFS algorithm class.
   277     
   277     
   278   };
   278   };
   279   
   279   
   280 /// @}
   280 /// @}
   281   
   281   
   282 } //END OF NAMESPACE HUGO
   282 } //END OF NAMESPACE LEMON
   283 
   283 
   284 #endif
   284 #endif
   285 
   285 
   286 
   286