equal
deleted
inserted
replaced
1 /* -*- C++ -*- |
1 /* -*- C++ -*- |
2 * src/test/min_cost_flow_test.cc - Part of HUGOlib, a generic C++ optimization library |
2 * src/test/min_cost_flow_test.cc - Part of LEMON, a generic C++ optimization library |
3 * |
3 * |
4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
5 * (Egervary Combinatorial Optimization Research Group, EGRES). |
5 * (Egervary Combinatorial Optimization Research Group, EGRES). |
6 * |
6 * |
7 * Permission to use, modify and distribute this software is granted |
7 * Permission to use, modify and distribute this software is granted |
14 * |
14 * |
15 */ |
15 */ |
16 |
16 |
17 #include <iostream> |
17 #include <iostream> |
18 #include "test_tools.h" |
18 #include "test_tools.h" |
19 #include <hugo/list_graph.h> |
19 #include <lemon/list_graph.h> |
20 #include <hugo/min_cost_flow.h> |
20 #include <lemon/min_cost_flow.h> |
21 //#include <path.h> |
21 //#include <path.h> |
22 //#include <maps.h> |
22 //#include <maps.h> |
23 |
23 |
24 using namespace std; |
24 using namespace std; |
25 using namespace hugo; |
25 using namespace lemon; |
26 |
26 |
27 |
27 |
28 |
28 |
29 bool passed = true; |
29 bool passed = true; |
30 /* |
30 /* |