equal
deleted
inserted
replaced
1 /* -*- C++ -*- |
1 /* -*- C++ -*- |
2 * src/hugo/default_map.h - Part of HUGOlib, a generic C++ optimization library |
2 * src/lemon/default_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_DEFAULT_MAP_H |
17 #ifndef LEMON_DEFAULT_MAP_H |
18 #define HUGO_DEFAULT_MAP_H |
18 #define LEMON_DEFAULT_MAP_H |
19 |
19 |
20 |
20 |
21 #include <hugo/array_map.h> |
21 #include <lemon/array_map.h> |
22 #include <hugo/vector_map.h> |
22 #include <lemon/vector_map.h> |
23 |
23 |
24 ///\ingroup graphmaps |
24 ///\ingroup graphmaps |
25 ///\file |
25 ///\file |
26 ///\brief Graph maps that construates and destruates |
26 ///\brief Graph maps that construates and destruates |
27 ///their elements dynamically. |
27 ///their elements dynamically. |
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 |