equal
deleted
inserted
replaced
1 /* -*- C++ -*- |
1 /* -*- C++ -*- |
2 * src/hugo/vector_map.h - Part of HUGOlib, a generic C++ optimization library |
2 * src/lemon/vector_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_VECTOR_MAP_H |
17 #ifndef LEMON_VECTOR_MAP_H |
18 #define HUGO_VECTOR_MAP_H |
18 #define LEMON_VECTOR_MAP_H |
19 |
19 |
20 #include <vector> |
20 #include <vector> |
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 Vector based graph maps. |
27 ///\brief Vector based graph maps. |
28 |
28 |
29 namespace hugo { |
29 namespace lemon { |
30 |
30 |
31 /// \addtogroup graphmaps |
31 /// \addtogroup graphmaps |
32 /// @{ |
32 /// @{ |
33 |
33 |
34 /** The ArrayMap template class is graph map structure what |
34 /** The ArrayMap template class is graph map structure what |