equal
deleted
inserted
replaced
1 // -*- mode:C++ -*- |
1 // -*- mode:C++ -*- |
2 |
2 |
3 #ifndef HUGO_SMART_GRAPH_H |
3 #ifndef HUGO_SMART_GRAPH_H |
4 #define HUGO_SMART_GRAPH_H |
4 #define HUGO_SMART_GRAPH_H |
5 |
5 |
|
6 ///ingroup graphs |
6 ///\file |
7 ///\file |
7 ///\brief SmartGraph and SymSmartGraph classes. |
8 ///\brief SmartGraph and SymSmartGraph classes. |
8 |
9 |
9 #include <vector> |
10 #include <vector> |
10 #include <limits.h> |
11 #include <limits.h> |
11 |
12 |
12 #include "invalid.h" |
13 #include "invalid.h" |
13 |
14 |
14 namespace hugo { |
15 namespace hugo { |
15 |
16 |
|
17 /// \addtogroup graphs |
|
18 /// @{ |
16 class SymSmartGraph; |
19 class SymSmartGraph; |
17 |
20 |
18 ///A smart graph class. |
21 ///A smart graph class. |
19 |
22 |
20 ///This is a simple and fast graph implementation. |
23 ///This is a simple and fast graph implementation. |
587 |
590 |
588 }; |
591 }; |
589 |
592 |
590 }; |
593 }; |
591 |
594 |
592 |
595 /// @} |
|
596 |
593 } //namespace hugo |
597 } //namespace hugo |
594 |
598 |
595 |
599 |
596 |
600 |
597 |
601 |