Changeset 522:a0ed1fa1b800 in lemon-0.x for src/work/marci/preflow_demo_athos.cc
- Timestamp:
- 05/04/04 13:20:16 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@687
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/preflow_demo_athos.cc
r105 r522 2 2 #include <fstream> 3 3 4 #include <list_graph.h h>5 #include <dimacs.h h>4 #include <list_graph.h> 5 #include <dimacs.h> 6 6 #include <preflow_push.hh> 7 7 #include <time_measure.h> … … 12 12 // read_dimacs_demo < dimacs_max_flow_file 13 13 int main(int, char **) { 14 typedef ListGraph::Node It NodeIt;15 typedef ListGraph::EachEdgeIt EachEdgeIt;14 typedef ListGraph::Node Node; 15 //typedef ListGraph::EachEdgeIt EachEdgeIt; 16 16 17 17 ListGraph G; 18 Node Its, t;18 Node s, t; 19 19 ListGraph::EdgeMap<int> cap(G); 20 20 readDimacsMaxFlow(std::cin, G, s, t, cap);
Note: See TracChangeset
for help on using the changeset viewer.