diff -r 9a51db038228 -r ef200e268af2 lemon/opt2_tsp.h --- a/lemon/opt2_tsp.h Sat Jan 08 22:51:16 2011 +0100 +++ b/lemon/opt2_tsp.h Sun Jan 09 00:56:52 2011 +0100 @@ -21,13 +21,15 @@ /// \ingroup tsp /// \file -/// \brief 2-opt algorithm for symmetric TSP +/// \brief 2-opt algorithm for symmetric TSP. #include #include namespace lemon { + /// \ingroup tsp + /// /// \brief 2-opt algorithm for symmetric TSP. /// /// Opt2Tsp implements the 2-opt heuristic for solving @@ -114,7 +116,7 @@ return start(); } - /// \brief Runs the algorithm from the given tour. + /// \brief Runs the algorithm starting from the given tour. /// /// This function runs the algorithm starting from the given tour. /// @@ -156,16 +158,16 @@ return start(); } - /// \brief Runs the algorithm from the given tour. + /// \brief Runs the algorithm starting from the given tour. /// - /// This function runs the algorithm starting from the given tour. + /// This function runs the algorithm starting from the given tour + /// (node sequence). /// - /// \param tour The tour as a node sequence. It must be a standard - /// sequence container storing all Nodes in the desired order. + /// \param tour A vector that stores all Nodes of the graph + /// in the desired order. /// /// \return The total cost of the found tour. - template