equal
deleted
inserted
replaced
1 /* -*- C++ -*- |
1 /* -*- C++ -*- |
2 * src/hugo/array_map.h - Part of HUGOlib, a generic C++ optimization library |
2 * src/lemon/array_map.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_ARRAY_MAP_H |
17 #ifndef LEMON_ARRAY_MAP_H |
18 #define HUGO_ARRAY_MAP_H |
18 #define LEMON_ARRAY_MAP_H |
19 |
19 |
20 #include <memory> |
20 #include <memory> |
21 |
21 |
22 #include <hugo/map_iterator.h> |
22 #include <lemon/map_iterator.h> |
23 #include <hugo/map_bits.h> |
23 #include <lemon/map_bits.h> |
24 |
24 |
25 ///\ingroup graphmaps |
25 ///\ingroup graphmaps |
26 ///\file |
26 ///\file |
27 ///\brief Graph maps that construates and destruates |
27 ///\brief Graph maps that construates and destruates |
28 ///their elements dynamically. |
28 ///their elements dynamically. |
29 |
29 |
30 namespace hugo { |
30 namespace lemon { |
31 |
31 |
32 |
32 |
33 /// \addtogroup graphmaps |
33 /// \addtogroup graphmaps |
34 /// @{ |
34 /// @{ |
35 |
35 |
344 |
344 |
345 /// @} |
345 /// @} |
346 |
346 |
347 } |
347 } |
348 |
348 |
349 #endif //HUGO_ARRAY_MAP_H |
349 #endif //LEMON_ARRAY_MAP_H |