equal
deleted
inserted
replaced
192 |
192 |
193 ///This is a simple and fast directed full graph implementation. |
193 ///This is a simple and fast directed full graph implementation. |
194 ///It is completely static, so you can neither add nor delete either |
194 ///It is completely static, so you can neither add nor delete either |
195 ///edges or nodes. |
195 ///edges or nodes. |
196 ///Thus it conforms to |
196 ///Thus it conforms to |
197 ///the \ref skeleton::StaticGraph "StaticGraph" concept |
197 ///the \ref concept::StaticGraph "StaticGraph" concept |
198 ///\sa skeleton::StaticGraph. |
198 ///\sa concept::StaticGraph. |
199 ///\todo What about loops? |
199 ///\todo What about loops? |
200 ///\todo Don't we need SymEdgeMap? |
200 ///\todo Don't we need SymEdgeMap? |
201 /// |
201 /// |
202 ///\author Alpar Juttner |
202 ///\author Alpar Juttner |
203 class FullGraph : public MappableFullGraphBase { |
203 class FullGraph : public MappableFullGraphBase { |