equal
deleted
inserted
replaced
237 ///This is a simple and fast graph implementation. |
237 ///This is a simple and fast graph implementation. |
238 ///It is also quite memory efficient, but at the price |
238 ///It is also quite memory efficient, but at the price |
239 ///that <b> it does support only limited (only stack-like) |
239 ///that <b> it does support only limited (only stack-like) |
240 ///node and edge deletions</b>. |
240 ///node and edge deletions</b>. |
241 ///It conforms to |
241 ///It conforms to |
242 ///the \ref concept::ExtendableGraph "ExtendableGraph" concept. |
242 ///the \ref concept::Graph "Graph" concept. |
243 ///\sa concept::ExtendableGraph. |
243 ///\sa concept::Graph. |
244 /// |
244 /// |
245 ///\author Alpar Juttner |
245 ///\author Alpar Juttner |
246 class SmartGraph : public ExtendedSmartGraphBase { |
246 class SmartGraph : public ExtendedSmartGraphBase { |
247 public: |
247 public: |
248 |
248 |