equal
deleted
inserted
replaced
1 /* -*- C++ -*- |
1 /* -*- C++ -*- |
2 * src/hugo/skeletons/graph.h - Part of HUGOlib, a generic C++ optimization library |
2 * src/lemon/skeletons/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_SKELETON_GRAPH_H |
17 #ifndef LEMON_SKELETON_GRAPH_H |
18 #define HUGO_SKELETON_GRAPH_H |
18 #define LEMON_SKELETON_GRAPH_H |
19 |
19 |
20 ///\ingroup skeletons |
20 ///\ingroup skeletons |
21 ///\file |
21 ///\file |
22 ///\brief Declaration of Graph. |
22 ///\brief Declaration of Graph. |
23 |
23 |
24 #include <hugo/invalid.h> |
24 #include <lemon/invalid.h> |
25 #include <hugo/skeletons/maps.h> |
25 #include <lemon/skeletons/maps.h> |
26 |
26 |
27 namespace hugo { |
27 namespace lemon { |
28 namespace skeleton { |
28 namespace skeleton { |
29 |
29 |
30 /// \addtogroup skeletons |
30 /// \addtogroup skeletons |
31 /// @{ |
31 /// @{ |
32 |
32 |
501 void erase(Edge e) { } |
501 void erase(Edge e) { } |
502 }; |
502 }; |
503 |
503 |
504 // @} |
504 // @} |
505 } //namespace skeleton |
505 } //namespace skeleton |
506 } //namespace hugo |
506 } //namespace lemon |
507 |
507 |
508 |
508 |
509 |
509 |
510 #endif // HUGO_SKELETON_GRAPH_H |
510 #endif // LEMON_SKELETON_GRAPH_H |