src/work/marci/augmenting_flow.h
changeset 921 818510fa3d99
parent 888 cc3590763f7f
child 944 4f064aff855e
     1.1 --- a/src/work/marci/augmenting_flow.h	Wed Sep 29 14:12:26 2004 +0000
     1.2 +++ b/src/work/marci/augmenting_flow.h	Wed Sep 29 15:30:04 2004 +0000
     1.3 @@ -1,21 +1,21 @@
     1.4  // -*- C++ -*-
     1.5 -#ifndef HUGO_AUGMENTING_FLOW_H
     1.6 -#define HUGO_AUGMENTING_FLOW_H
     1.7 +#ifndef LEMON_AUGMENTING_FLOW_H
     1.8 +#define LEMON_AUGMENTING_FLOW_H
     1.9  
    1.10  #include <vector>
    1.11  #include <iostream>
    1.12  
    1.13 -#include <hugo/graph_wrapper.h>
    1.14 +#include <lemon/graph_wrapper.h>
    1.15  #include <bfs_dfs.h>
    1.16 -#include <hugo/invalid.h>
    1.17 -#include <hugo/maps.h>
    1.18 -#include <hugo/tight_edge_filter_map.h>
    1.19 +#include <lemon/invalid.h>
    1.20 +#include <lemon/maps.h>
    1.21 +#include <lemon/tight_edge_filter_map.h>
    1.22  
    1.23  /// \file
    1.24  /// \brief Maximum flow algorithms.
    1.25  /// \ingroup galgs
    1.26  
    1.27 -namespace hugo {
    1.28 +namespace lemon {
    1.29  
    1.30    /// \addtogroup galgs
    1.31    /// @{                                                                                                                                        
    1.32 @@ -536,7 +536,7 @@
    1.33  	free1(erasing_res_graph);
    1.34  
    1.35        dfs.pushAndSetReached
    1.36 -	/// \bug hugo 0.2
    1.37 +	/// \bug lemon 0.2
    1.38  	(typename ErasingResGW::Node
    1.39  	 (typename FilterResGW::Node
    1.40  	  (typename ResGW::Node(s)
    1.41 @@ -594,8 +594,8 @@
    1.42    }
    1.43  
    1.44  
    1.45 -} //namespace hugo
    1.46 +} //namespace lemon
    1.47  
    1.48 -#endif //HUGO_AUGMENTING_FLOW_H
    1.49 +#endif //LEMON_AUGMENTING_FLOW_H
    1.50  
    1.51