Changeset 959:c80ef5912903 in lemon-0.x for src/lemon
- Timestamp:
- 11/04/04 21:24:59 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1342
- Location:
- src/lemon
- Files:
-
- 5 added
- 5 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/Makefile.am
r946 r959 37 37 38 38 noinst_HEADERS = \ 39 skeletons/graph.h\40 skeletons/graph_component.h \41 skeletons/sym_graph.h\42 skeletons/maps.h\43 skeletons/path.h39 concept/graph.h \ 40 concept/graph_component.h \ 41 concept/sym_graph.h \ 42 concept/maps.h \ 43 concept/path.h -
src/lemon/dijkstra.h
r921 r959 34 34 ///This class provides an efficient implementation of %Dijkstra algorithm. 35 35 ///The edge lengths are passed to the algorithm using a 36 ///\ref skeleton::ReadMap "ReadMap",36 ///\ref concept::ReadMap "ReadMap", 37 37 ///so it is easy to change it to any kind of length. 38 38 /// 39 39 ///The type of the length is determined by the 40 ///\ref skeleton::ReadMap::ValueType "ValueType" of the length map.40 ///\ref concept::ReadMap::ValueType "ValueType" of the length map. 41 41 /// 42 42 ///It is also possible to change the underlying priority heap. … … 49 49 ///may involve in relatively time consuming process to compute the edge 50 50 ///length if it is necessary. The default map type is 51 ///\ref skeleton::StaticGraph::EdgeMap "Graph::EdgeMap<int>"51 ///\ref concept::StaticGraph::EdgeMap "Graph::EdgeMap<int>" 52 52 ///\param Heap The heap type used by the %Dijkstra 53 53 ///algorithm. The default -
src/lemon/full_graph.h
r951 r959 195 195 ///edges or nodes. 196 196 ///Thus it conforms to 197 ///the \ref skeleton::StaticGraph "StaticGraph" concept198 ///\sa skeleton::StaticGraph.197 ///the \ref concept::StaticGraph "StaticGraph" concept 198 ///\sa concept::StaticGraph. 199 199 ///\todo What about loops? 200 200 ///\todo Don't we need SymEdgeMap? -
src/lemon/list_graph.h
r949 r959 318 318 /// 319 319 ///It conforms to the 320 ///\ref skeleton::ErasableGraph "ErasableGraph" concept.321 ///\sa skeleton::ErasableGraph.320 ///\ref concept::ErasableGraph "ErasableGraph" concept. 321 ///\sa concept::ErasableGraph. 322 322 323 323 class ListGraph : public ErasableListGraphBase -
src/lemon/maps.h
r921 r959 21 21 ///\brief Miscellaneous property maps 22 22 /// 23 ///\todo This file has the same name as the concept file in skeletons,23 ///\todo This file has the same name as the concept file in concept/, 24 24 /// and this is not easily detectable in docs... 25 25 -
src/lemon/path.h
r921 r959 27 27 algorithm to store its result in any kind of path structure. 28 28 29 \sa lemon:: skeleton::Path29 \sa lemon::concept::Path 30 30 31 31 */ -
src/lemon/smart_graph.h
r950 r959 230 230 ///that <b> it does not support node and edge deletion</b>. 231 231 ///It conforms to 232 ///the \ref skeleton::ExtendableGraph "ExtendableGraph" concept.233 ///\sa skeleton::ExtendableGraph.232 ///the \ref concept::ExtendableGraph "ExtendableGraph" concept. 233 ///\sa concept::ExtendableGraph. 234 234 /// 235 235 ///\todo Some member functions could be \c static.
Note: See TracChangeset
for help on using the changeset viewer.