equal
deleted
inserted
replaced
1 /* -*- C++ -*- |
1 /* -*- C++ -*- |
2 * src/hugo/full_graph.h - Part of HUGOlib, a generic C++ optimization library |
2 * src/lemon/full_graph.h - 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 |
12 * express or implied, and with no claim as to its suitability for any |
12 * express or implied, and with no claim as to its suitability for any |
13 * purpose. |
13 * purpose. |
14 * |
14 * |
15 */ |
15 */ |
16 |
16 |
17 #ifndef HUGO_FULL_GRAPH_H |
17 #ifndef LEMON_FULL_GRAPH_H |
18 #define HUGO_FULL_GRAPH_H |
18 #define LEMON_FULL_GRAPH_H |
19 |
19 |
20 ///\ingroup graphs |
20 ///\ingroup graphs |
21 ///\file |
21 ///\file |
22 ///\brief FullGraph and SymFullGraph classes. |
22 ///\brief FullGraph and SymFullGraph classes. |
23 |
23 |
24 #include <vector> |
24 #include <vector> |
25 #include <climits> |
25 #include <climits> |
26 |
26 |
27 #include <hugo/invalid.h> |
27 #include <lemon/invalid.h> |
28 |
28 |
29 #include <hugo/map_registry.h> |
29 #include <lemon/map_registry.h> |
30 #include <hugo/array_map.h> |
30 #include <lemon/array_map.h> |
31 |
31 |
32 #include <hugo/map_defines.h> |
32 #include <lemon/map_defines.h> |
33 |
33 |
34 namespace hugo { |
34 namespace lemon { |
35 |
35 |
36 /// \addtogroup graphs |
36 /// \addtogroup graphs |
37 /// @{ |
37 /// @{ |
38 |
38 |
39 ///A full graph class. |
39 ///A full graph class. |
238 |
238 |
239 }; |
239 }; |
240 |
240 |
241 /// @} |
241 /// @} |
242 |
242 |
243 } //namespace hugo |
243 } //namespace lemon |
244 |
244 |
245 |
245 |
246 |
246 |
247 |
247 |
248 #endif //HUGO_FULL_GRAPH_H |
248 #endif //LEMON_FULL_GRAPH_H |