Changeset 76 in tspsg-svn for trunk/src/tspsolver.cpp
- Timestamp:
- Dec 16, 2009, 11:49:51 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/tspsolver.cpp
r74 r76 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.