diff -r e5c0c5cc477f -r 17eb3eaad9f8 lemon/bellman_ford.h --- a/lemon/bellman_ford.h Thu Feb 02 17:09:09 2006 +0000 +++ b/lemon/bellman_ford.h Thu Feb 02 17:43:24 2006 +0000 @@ -544,11 +544,11 @@ /// - The distance of each node from the root. /// /// \note d.run(s) is just a shortcut of the following code. - /// \code + ///\code /// d.init(); /// d.addSource(s); /// d.start(); - /// \endcode + ///\endcode void run(Node s) { init(); addSource(s); @@ -565,11 +565,11 @@ /// - The distance of each node from the root. /// /// \note d.run(s, len) is just a shortcut of the following code. - /// \code + ///\code /// d.init(); /// d.addSource(s); /// d.limitedStart(len); - /// \endcode + ///\endcode void run(Node s, int len) { init(); addSource(s); @@ -928,9 +928,9 @@ /// \ref BellmanFordWizard. /// The following /// example shows how to use these parameters. - /// \code + ///\code /// bellmanford(g,length,source).predMap(preds).run(); - /// \endcode + ///\endcode /// \warning Don't forget to put the \ref BellmanFordWizard::run() "run()" /// to the end of the parameter list. /// \sa BellmanFordWizard