equal
deleted
inserted
replaced
1 /* -*- C++ -*- |
1 /* -*- C++ -*- |
2 * src/hugo/xy.h - Part of HUGOlib, a generic C++ optimization library |
2 * src/lemon/xy.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_XY_H |
17 #ifndef LEMON_XY_H |
18 #define HUGO_XY_H |
18 #define LEMON_XY_H |
19 |
19 |
20 #include <iostream> |
20 #include <iostream> |
21 |
21 |
22 ///\ingroup misc |
22 ///\ingroup misc |
23 ///\file |
23 ///\file |
24 ///\brief A simple two dimensional vector and a bounding box implementation |
24 ///\brief A simple two dimensional vector and a bounding box implementation |
25 /// |
25 /// |
26 /// The class \ref hugo::xy "xy" implements |
26 /// The class \ref lemon::xy "xy" implements |
27 ///a two dimensional vector with the usual |
27 ///a two dimensional vector with the usual |
28 /// operations. |
28 /// operations. |
29 /// |
29 /// |
30 /// The class \ref hugo::BoundingBox "BoundingBox" can be used to determine |
30 /// The class \ref lemon::BoundingBox "BoundingBox" can be used to determine |
31 /// the rectangular bounding box a set of \ref hugo::xy "xy"'s. |
31 /// the rectangular bounding box a set of \ref lemon::xy "xy"'s. |
32 /// |
32 /// |
33 ///\author Attila Bernath |
33 ///\author Attila Bernath |
34 |
34 |
35 |
35 |
36 namespace hugo { |
36 namespace lemon { |
37 |
37 |
38 /// \addtogroup misc |
38 /// \addtogroup misc |
39 /// @{ |
39 /// @{ |
40 |
40 |
41 /// A two dimensional vector (plainvector) implementation |
41 /// A two dimensional vector (plainvector) implementation |
241 |
241 |
242 |
242 |
243 /// @} |
243 /// @} |
244 |
244 |
245 |
245 |
246 } //namespace hugo |
246 } //namespace lemon |
247 |
247 |
248 #endif //HUGO_XY_H |
248 #endif //LEMON_XY_H |