Changeset 959:c80ef5912903 in lemon-0.x for src/work
- 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/work
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/Doxyfile
r939 r959 397 397 ../../doc/groups.dox \ 398 398 ../lemon \ 399 ../lemon/ skeletons\399 ../lemon/concept \ 400 400 ../test/test_tools.h \ 401 401 klao/path.h \ -
src/work/alpar/dijkstra.h
r955 r959 101 101 ///This class provides an efficient implementation of %Dijkstra algorithm. 102 102 ///The edge lengths are passed to the algorithm using a 103 ///\ref skeleton::ReadMap "ReadMap",103 ///\ref concept::ReadMap "ReadMap", 104 104 ///so it is easy to change it to any kind of length. 105 105 /// 106 106 ///The type of the length is determined by the 107 ///\ref skeleton::ReadMap::ValueType "ValueType" of the length map.107 ///\ref concept::ReadMap::ValueType "ValueType" of the length map. 108 108 /// 109 109 ///It is also possible to change the underlying priority heap. … … 118 118 ///may involve in relatively time consuming process to compute the edge 119 119 ///length if it is necessary. The default map type is 120 ///\ref skeleton::StaticGraph::EdgeMap "Graph::EdgeMap<int>".120 ///\ref concept::StaticGraph::EdgeMap "Graph::EdgeMap<int>". 121 121 ///The value of LM is not used directly by Dijkstra, it 122 122 ///is only passed to \ref DijkstraDefaultTraits. -
src/work/alpar/list_graph_demo.cc
r921 r959 1 1 #include<list_graph.h> 2 #include< skeletons/graph.h>2 #include<concept/graph.h> 3 3 4 4 #include <iostream> -
src/work/marci/bfs_mm_test.cc
r944 r959 18 18 #include <lemon/smart_graph.h> 19 19 #include <bfs_mm.h> 20 #include <lemon/ skeletons/graph.h>20 #include <lemon/concept/graph.h> 21 21 22 22 using namespace lemon; … … 27 27 void check_Bfs_Compile() 28 28 { 29 typedef skeleton::StaticGraph Graph;29 typedef concept::StaticGraph Graph; 30 30 31 31 typedef Graph::Edge Edge; -
src/work/peter/path/path.h
r921 r959 13 13 algorithm to store its result in any kind of path structure. 14 14 15 \sa lemon:: skeleton::Path15 \sa lemon::concept::Path 16 16 17 17 */ -
src/work/peter/path/path_skeleton.h
r921 r959 2 2 // -*- c++ -*- // 3 3 4 ///\ingroup skeletons4 ///\ingroup concept 5 5 ///\file 6 6 ///\brief Classes for representing paths in graphs. … … 12 12 13 13 namespace lemon { 14 namespace skeleton{15 /// \addtogroup skeletons14 namespace concept { 15 /// \addtogroup concept 16 16 /// @{ 17 17 18 18 19 //! \brief A skeleto mstructure for representing directed paths in a graph.19 //! \brief A skeleton structure for representing directed paths in a graph. 20 20 //! 21 21 //! A skeleton structure for representing directed paths in a graph. … … 86 86 * \brief Iterator class to iterate on the edges of the paths 87 87 * 88 * \ingroup skeletons88 * \ingroup concept 89 89 * This class is used to iterate on the edges of the paths 90 90 * … … 119 119 * \brief Iterator class to iterate on the nodes of the paths 120 120 * 121 * \ingroup skeletons121 * \ingroup concept 122 122 * This class is used to iterate on the nodes of the paths 123 123 * … … 154 154 * \brief Class to build paths 155 155 * 156 * \ingroup skeletons156 * \ingroup concept 157 157 * This class is used to fill a path with edges. 158 158 * -
src/work/peter/path/path_test.cc
r921 r959 7 7 using namespace std; 8 8 using namespace lemon; 9 using namespace skeleton;9 using namespace concept; 10 10 11 11 bool passed = true;
Note: See TracChangeset
for help on using the changeset viewer.