Changeset fcaa74f7d7 in tspsg for src/tspsolver.cpp
- Timestamp:
- Dec 16, 2009, 11:49:51 PM (15 years ago)
- Branches:
- 0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
- Children:
- 140109febb
- Parents:
- 0bd0e1aca7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tspsolver.cpp
r0bd0e1aca7 rfcaa74f7d7 227 227 } 228 228 229 QList< TCandidate> CTSPSolver::findCandidate(const TMatrix &matrix, int &nRow, int &nCol) const229 QList<SCandidate> CTSPSolver::findCandidate(const TMatrix &matrix, int &nRow, int &nCol) const 230 230 { 231 231 nRow = -1; 232 232 nCol = -1; 233 QList< TCandidate> alts;234 TCandidate cand;233 QList<SCandidate> alts; 234 SCandidate cand; 235 235 double h = -1; 236 236 double sum;
Note: See TracChangeset
for help on using the changeset viewer.