equal
deleted
inserted
replaced
1 /* -*- C++ -*- |
1 /* -*- C++ -*- |
2 * src/test/dfs_test.cc - Part of HUGOlib, a generic C++ optimization library |
2 * src/test/dfs_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 |
13 * purpose. |
13 * purpose. |
14 * |
14 * |
15 */ |
15 */ |
16 |
16 |
17 #include "test_tools.h" |
17 #include "test_tools.h" |
18 #include <hugo/smart_graph.h> |
18 #include <lemon/smart_graph.h> |
19 #include <hugo/dfs.h> |
19 #include <lemon/dfs.h> |
20 #include<hugo/skeletons/graph.h> |
20 #include<lemon/skeletons/graph.h> |
21 |
21 |
22 using namespace hugo; |
22 using namespace lemon; |
23 |
23 |
24 const int PET_SIZE =5; |
24 const int PET_SIZE =5; |
25 |
25 |
26 |
26 |
27 void check_Dfs_SmartGraph_Compile() |
27 void check_Dfs_SmartGraph_Compile() |