equal
deleted
inserted
replaced
64 typedef Graph::EdgeMap<int> FlowMap; |
64 typedef Graph::EdgeMap<int> FlowMap; |
65 typedef Graph::NodeMap<bool> CutMap; |
65 typedef Graph::NodeMap<bool> CutMap; |
66 |
66 |
67 typedef Preflow<Graph, int> PType; |
67 typedef Preflow<Graph, int> PType; |
68 |
68 |
69 std::ifstream file("preflow_graph"); |
69 std::ifstream file("preflow_graph.out"); |
70 |
70 |
71 Graph G; |
71 Graph G; |
72 Node s, t; |
72 Node s, t; |
73 CapMap cap(G); |
73 CapMap cap(G); |
74 readDimacs(file, G, cap, s, t); |
74 readDimacs(file, G, cap, s, t); |