Changeset 605:5232721b3f14 in lemon-main for tools
- Timestamp:
- 03/25/09 15:58:44 (16 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/dimacs-solver.cc
r602 r605 106 106 if (report) std::cerr << "Read the file: " << ti << '\n'; 107 107 ti.restart(); 108 NetworkSimplex< Digraph, Digraph::ArcMap<Value>, Digraph::ArcMap<Value>, 109 Digraph::ArcMap<Value>, Digraph::NodeMap<Value> > 110 ns(g, lower, cap, cost, sup); 108 NetworkSimplex<Digraph, Value> ns(g); 109 ns.lowerMap(lower).capacityMap(cap).costMap(cost).supplyMap(sup); 111 110 if (report) std::cerr << "Setup NetworkSimplex class: " << ti << '\n'; 112 111 ti.restart();
Note: See TracChangeset
for help on using the changeset viewer.