Changeset 85ad815b0b in tspsg for src/tspsolver.cpp
- Timestamp:
- Oct 21, 2009, 2:48:49 PM (15 years ago)
- Branches:
- 0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
- Children:
- e0fcac5f2c
- Parents:
- caef58b531
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tspsolver.cpp
rcaef58b531 r85ad815b0b 131 131 * \param task The matrix of city-to-city travel costs. 132 132 * \param parent The parent widget for displaying messages and dialogs. 133 * \return Pointer to the root of the solution tree. 133 134 * 134 135 * \todo TODO: Comment the algorithm. … … 236 237 /*! 237 238 * \brief Returns the sorted optimal path, starting from City 1. 239 * \return A string, containing sorted optimal path. 238 240 */ 239 241 QString CTSPSolver::getSortedPath() const … … 255 257 /*! 256 258 * \brief Returns CTSPSolver's version ID. 257 * 258 * Current version ID is <b>\$Id$</b>. 259 * \return A string: <b>\$Id$</b>. 259 260 */ 260 261 QString CTSPSolver::getVersionId() … … 265 266 /*! 266 267 * \brief Returns whether or not the solution is definitely optimal. 268 * \return \c true if solution is definitely optimal, otherwise \c false. 267 269 * 268 270 * The solution may need some further interations to determine whether it is optimal. 269 * In such cases this function returns \ pfalse.271 * In such cases this function returns \c false. 270 272 */ 271 273 bool CTSPSolver::isOptimal() const
Note: See TracChangeset
for help on using the changeset viewer.