diff -r 7a2d991e9852 -r a3c73e9b9b2e src/work/marci/dimacs.hh --- a/src/work/marci/dimacs.hh Fri Feb 20 00:29:19 2004 +0000 +++ b/src/work/marci/dimacs.hh Fri Feb 20 21:45:07 2004 +0000 @@ -5,7 +5,7 @@ #include #include -namespace marci { +namespace hugo { template void readDimacsMaxFlow(std::istream& is, Graph &G, typename Graph::NodeIt &s, typename Graph::NodeIt &t, CapacityMap& capacity) { @@ -49,13 +49,13 @@ is >> i >> j >> cap; getline(is, str); typename Graph::EdgeIt e=G.addEdge(nodes[i], nodes[j]); - capacity.resize(); + capacity.update(); capacity.set(e, cap); break; } } } -} //namespace marci +} //namespace hugo #endif //DIMACS_HH