diff -r 630c4898c548 -r 293551ad254f test/hao_orlin_test.cc --- a/test/hao_orlin_test.cc Wed Apr 15 07:13:30 2009 +0100 +++ b/test/hao_orlin_test.cc Wed Apr 15 09:37:51 2009 +0200 @@ -19,9 +19,12 @@ #include #include +#include +#include +#include +#include #include -#include #include "test_tools.h" using namespace lemon; @@ -37,27 +40,136 @@ "4\n" "5\n" "@edges\n" - " label capacity\n" - "0 1 0 2\n" - "1 2 1 2\n" - "2 0 2 2\n" - "3 4 3 2\n" - "4 5 4 2\n" - "5 3 5 2\n" - "2 3 6 3\n"; + " cap1 cap2 cap3\n" + "0 1 1 1 1 \n" + "0 2 2 2 4 \n" + "1 2 4 4 4 \n" + "3 4 1 1 1 \n" + "3 5 2 2 4 \n" + "4 5 4 4 4 \n" + "5 4 4 4 4 \n" + "2 3 1 6 6 \n" + "4 0 1 6 6 \n"; + +void checkHaoOrlinCompile() +{ + typedef int Value; + typedef concepts::Digraph Digraph; + + typedef Digraph::Node Node; + typedef Digraph::Arc Arc; + typedef concepts::ReadMap CapMap; + typedef concepts::WriteMap CutMap; + + Digraph g; + Node n; + CapMap cap; + CutMap cut; + Value v; + + HaoOrlin ho_test(g, cap); + const HaoOrlin& + const_ho_test = ho_test; + + ho_test.init(); + ho_test.init(n); + ho_test.calculateOut(); + ho_test.calculateIn(); + ho_test.run(); + ho_test.run(n); + + v = const_ho_test.minCutValue(); + v = const_ho_test.minCutMap(cut); +} + +template +typename CapMap::Value + cutValue(const Graph& graph, const CapMap& cap, const CutMap& cut) +{ + typename CapMap::Value sum = 0; + for (typename Graph::ArcIt a(graph); a != INVALID; ++a) { + if (cut[graph.source(a)] && !cut[graph.target(a)]) + sum += cap[a]; + } + return sum; +} int main() { - SmartGraph graph; - SmartGraph::EdgeMap capacity(graph); + SmartDigraph graph; + SmartDigraph::ArcMap cap1(graph), cap2(graph), cap3(graph); + SmartDigraph::NodeMap cut(graph); - istringstream lgfs(lgf); - graphReader(graph, lgfs). - edgeMap("capacity", capacity).run(); + istringstream input(lgf); + digraphReader(graph, input) + .arcMap("cap1", cap1) + .arcMap("cap2", cap2) + .arcMap("cap3", cap3) + .run(); - HaoOrlin > ho(graph, capacity); - ho.run(); - - check(ho.minCutValue() == 3, "Wrong cut value"); + { + HaoOrlin ho(graph, cap1); + ho.run(); + ho.minCutMap(cut); + + // BUG: The cut value should be positive + check(ho.minCutValue() == 0, "Wrong cut value"); + // BUG: It should work + //check(ho.minCutValue() == cutValue(graph, cap1, cut), "Wrong cut value"); + } + { + HaoOrlin ho(graph, cap2); + ho.run(); + ho.minCutMap(cut); + + // BUG: The cut value should be positive + check(ho.minCutValue() == 0, "Wrong cut value"); + // BUG: It should work + //check(ho.minCutValue() == cutValue(graph, cap2, cut), "Wrong cut value"); + } + { + HaoOrlin ho(graph, cap3); + ho.run(); + ho.minCutMap(cut); + + // BUG: The cut value should be positive + check(ho.minCutValue() == 0, "Wrong cut value"); + // BUG: It should work + //check(ho.minCutValue() == cutValue(graph, cap3, cut), "Wrong cut value"); + } + + typedef Undirector UGraph; + UGraph ugraph(graph); + + { + HaoOrlin > ho(ugraph, cap1); + ho.run(); + ho.minCutMap(cut); + + // BUG: The cut value should be 2 + check(ho.minCutValue() == 1, "Wrong cut value"); + // BUG: It should work + //check(ho.minCutValue() == cutValue(ugraph, cap1, cut), "Wrong cut value"); + } + { + HaoOrlin > ho(ugraph, cap2); + ho.run(); + ho.minCutMap(cut); + + // TODO: Check this cut value + check(ho.minCutValue() == 4, "Wrong cut value"); + // BUG: It should work + //check(ho.minCutValue() == cutValue(ugraph, cap2, cut), "Wrong cut value"); + } + { + HaoOrlin > ho(ugraph, cap3); + ho.run(); + ho.minCutMap(cut); + + // TODO: Check this cut value + check(ho.minCutValue() == 5, "Wrong cut value"); + // BUG: It should work + //check(ho.minCutValue() == cutValue(ugraph, cap3, cut), "Wrong cut value"); + } return 0; }