equal
deleted
inserted
replaced
1 /* -*- C++ -*- |
1 /* -*- C++ -*- |
2 * src/test/path_test.cc - Part of HUGOlib, a generic C++ optimization library |
2 * src/test/path_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 <string> |
17 #include <string> |
18 #include <iostream> |
18 #include <iostream> |
19 #include <hugo/skeletons/path.h> |
19 #include <lemon/skeletons/path.h> |
20 #include <hugo/path.h> |
20 #include <lemon/path.h> |
21 #include <hugo/list_graph.h> |
21 #include <lemon/list_graph.h> |
22 |
22 |
23 using namespace std; |
23 using namespace std; |
24 using namespace hugo; |
24 using namespace lemon; |
25 using namespace skeleton; |
25 using namespace skeleton; |
26 |
26 |
27 template<class Path> void checkCompilePath(Path &P) |
27 template<class Path> void checkCompilePath(Path &P) |
28 { |
28 { |
29 typedef typename Path::EdgeIt EdgeIt; |
29 typedef typename Path::EdgeIt EdgeIt; |