diff -r e38108b464c5 -r cc3867a7d380 src/work/marci/graph_wrapper_time.cc --- a/src/work/marci/graph_wrapper_time.cc Tue Sep 14 09:53:57 2004 +0000 +++ b/src/work/marci/graph_wrapper_time.cc Tue Sep 14 10:09:24 2004 +0000 @@ -10,7 +10,7 @@ #include #include #include -#include +#include #include #include @@ -32,9 +32,9 @@ Timer ts; ts.reset(); - typedef MaxFlow MyMaxFlow; - MyMaxFlow max_flow(g, s, t, cap, flow); - max_flow.run(MyMaxFlow::NO_FLOW); + typedef Preflow MyPreflow; + MyPreflow max_flow(g, s, t, cap, flow); + max_flow.run(MyPreflow::NO_FLOW); cout << "flow value: " << max_flow.flowValue() << endl; cout << ts << endl; }