# HG changeset patch # User alpar # Date 1108744848 0 # Node ID 91f9236dfec908b21a43821bf96c9aa28aa7394a # Parent fe0fcdb5687b2e6ba671690e446df0d385c7fd5f Wrap long lines diff -r fe0fcdb5687b -r 91f9236dfec9 src/lemon/dijkstra.h --- a/src/lemon/dijkstra.h Fri Feb 18 14:46:04 2005 +0000 +++ b/src/lemon/dijkstra.h Fri Feb 18 16:40:48 2005 +0000 @@ -87,7 +87,8 @@ ///Instantiates a PredNodeMap. ///This function instantiates a \ref PredNodeMap. - ///\param G is the graph, to which we would like to define the \ref PredNodeMap + ///\param G is the graph, to which + ///we would like to define the \ref PredNodeMap static PredNodeMap *createPredNodeMap(const GR &G) { return new PredNodeMap(); @@ -104,7 +105,8 @@ ///Instantiates a ReachedMap. ///This function instantiates a \ref ReachedMap. - ///\param G is the graph, to which we would like to define the \ref ReachedMap + ///\param G is the graph, to which + ///we would like to define the \ref ReachedMap static ReachedMap *createReachedMap(const GR &G) { return new ReachedMap(); @@ -455,7 +457,7 @@ public: ///\name Excetution control ///The simplest way to execute the algorithm is to use - ///\ref run(). + ///one of the member functions called \c run(...). ///\n ///It you need more control on the execution, ///first you must call \ref init(), then you can add several source nodes @@ -753,7 +755,8 @@ /// Constructor. - /// This constructor requires some parameters, listed in the parameters list. + /// This constructor requires some parameters, + /// listed in the parameters list. /// Others are initiated to 0. /// \param g is the initial value of \ref _g /// \param l is the initial value of \ref _length @@ -862,9 +865,11 @@ DefPredMapBase(const Base &b) : Base(b) {} }; - /// \ref named-templ-param "Named parameter" function for setting PredMap type - - /// \ref named-templ-param "Named parameter" function for setting PredMap type + ///\brief \ref named-templ-param "Named parameter" + ///function for setting PredMap type + /// + /// \ref named-templ-param "Named parameter" + ///function for setting PredMap type /// template DijkstraWizard > predMap(const T &t) @@ -881,9 +886,11 @@ DefPredNodeMapBase(const Base &b) : Base(b) {} }; - /// \ref named-templ-param "Named parameter" function for setting PredNodeMap type - - /// \ref named-templ-param "Named parameter" function for setting PredNodeMap type + ///\brief \ref named-templ-param "Named parameter" + ///function for setting PredNodeMap type + /// + /// \ref named-templ-param "Named parameter" + ///function for setting PredNodeMap type /// template DijkstraWizard > predNodeMap(const T &t) @@ -899,9 +906,11 @@ DefDistMapBase(const Base &b) : Base(b) {} }; - /// \ref named-templ-param "Named parameter" function for setting DistMap type - - /// \ref named-templ-param "Named parameter" function for setting DistMap type + ///\brief \ref named-templ-param "Named parameter" + ///function for setting DistMap type + /// + /// \ref named-templ-param "Named parameter" + ///function for setting DistMap type /// template DijkstraWizard > distMap(const T &t)