Changeset 1156:91f9236dfec9 in lemon-0.x for src/lemon
- Timestamp:
- 02/18/05 17:40:48 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1557
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/dijkstra.h
r1155 r1156 88 88 89 89 ///This function instantiates a \ref PredNodeMap. 90 ///\param G is the graph, to which we would like to define the \ref PredNodeMap 90 ///\param G is the graph, to which 91 ///we would like to define the \ref PredNodeMap 91 92 static PredNodeMap *createPredNodeMap(const GR &G) 92 93 { … … 105 106 106 107 ///This function instantiates a \ref ReachedMap. 107 ///\param G is the graph, to which we would like to define the \ref ReachedMap 108 ///\param G is the graph, to which 109 ///we would like to define the \ref ReachedMap 108 110 static ReachedMap *createReachedMap(const GR &G) 109 111 { … … 456 458 ///\name Excetution control 457 459 ///The simplest way to execute the algorithm is to use 458 /// \ref run().460 ///one of the member functions called \c run(...). 459 461 ///\n 460 462 ///It you need more control on the execution, … … 754 756 /// Constructor. 755 757 756 /// This constructor requires some parameters, listed in the parameters list. 758 /// This constructor requires some parameters, 759 /// listed in the parameters list. 757 760 /// Others are initiated to 0. 758 761 /// \param g is the initial value of \ref _g … … 863 866 }; 864 867 865 /// \ref named-templ-param "Named parameter" function for setting PredMap type 866 867 /// \ref named-templ-param "Named parameter" function for setting PredMap type 868 ///\brief \ref named-templ-param "Named parameter" 869 ///function for setting PredMap type 870 /// 871 /// \ref named-templ-param "Named parameter" 872 ///function for setting PredMap type 868 873 /// 869 874 template<class T> … … 882 887 }; 883 888 884 /// \ref named-templ-param "Named parameter" function for setting PredNodeMap type 885 886 /// \ref named-templ-param "Named parameter" function for setting PredNodeMap type 889 ///\brief \ref named-templ-param "Named parameter" 890 ///function for setting PredNodeMap type 891 /// 892 /// \ref named-templ-param "Named parameter" 893 ///function for setting PredNodeMap type 887 894 /// 888 895 template<class T> … … 900 907 }; 901 908 902 /// \ref named-templ-param "Named parameter" function for setting DistMap type 903 904 /// \ref named-templ-param "Named parameter" function for setting DistMap type 909 ///\brief \ref named-templ-param "Named parameter" 910 ///function for setting DistMap type 911 /// 912 /// \ref named-templ-param "Named parameter" 913 ///function for setting DistMap type 905 914 /// 906 915 template<class T>
Note: See TracChangeset
for help on using the changeset viewer.