src/work/marci/max_flow_demo.cc
changeset 921 818510fa3d99
parent 854 baf0b6e40211
child 986 e997802b855c
     1.1 --- a/src/work/marci/max_flow_demo.cc	Wed Sep 29 14:12:26 2004 +0000
     1.2 +++ b/src/work/marci/max_flow_demo.cc	Wed Sep 29 15:30:04 2004 +0000
     1.3 @@ -6,15 +6,15 @@
     1.4  #include <iostream>
     1.5  #include <fstream>
     1.6  
     1.7 -#include <hugo/smart_graph.h>
     1.8 -#include <hugo/list_graph.h>
     1.9 -#include <hugo/dimacs.h>
    1.10 -#include <hugo/time_measure.h>
    1.11 -#include <hugo/preflow.h>
    1.12 +#include <lemon/smart_graph.h>
    1.13 +#include <lemon/list_graph.h>
    1.14 +#include <lemon/dimacs.h>
    1.15 +#include <lemon/time_measure.h>
    1.16 +#include <lemon/preflow.h>
    1.17  #include <augmenting_flow.h>
    1.18  #include <graph_concept.h>
    1.19  
    1.20 -using namespace hugo;
    1.21 +using namespace lemon;
    1.22  
    1.23  int main(int, char **) {
    1.24