equal
deleted
inserted
replaced
1 /* -*- C++ -*- |
1 /* -*- C++ -*- |
2 * src/test/preflow_test.cc - Part of HUGOlib, a generic C++ optimization library |
2 * src/test/preflow_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 |
16 |
16 |
17 #include <fstream> |
17 #include <fstream> |
18 #include <string> |
18 #include <string> |
19 |
19 |
20 #include "test_tools.h" |
20 #include "test_tools.h" |
21 #include <hugo/smart_graph.h> |
21 #include <lemon/smart_graph.h> |
22 #include <hugo/dimacs.h> |
22 #include <lemon/dimacs.h> |
23 #include <hugo/preflow.h> |
23 #include <lemon/preflow.h> |
24 #include <hugo/skeletons/graph.h> |
24 #include <lemon/skeletons/graph.h> |
25 #include <hugo/skeletons/maps.h> |
25 #include <lemon/skeletons/maps.h> |
26 |
26 |
27 using namespace hugo; |
27 using namespace lemon; |
28 |
28 |
29 void check_Preflow() |
29 void check_Preflow() |
30 { |
30 { |
31 typedef int VType; |
31 typedef int VType; |
32 typedef skeleton::StaticGraph Graph; |
32 typedef skeleton::StaticGraph Graph; |