Changeset fcaa74f7d7 in tspsg for src/tspsolver.cpp


Ignore:
Timestamp:
Dec 16, 2009, 11:49:51 PM (14 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
140109febb
Parents:
0bd0e1aca7
Message:
  • TCandidate should, actually, be SCandidate (struct, not typedef). Renamed it.
  • Documentation update.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tspsolver.cpp

    r0bd0e1aca7 rfcaa74f7d7  
    227227}
    228228
    229 QList<TCandidate> CTSPSolver::findCandidate(const TMatrix &matrix, int &nRow, int &nCol) const
     229QList<SCandidate> CTSPSolver::findCandidate(const TMatrix &matrix, int &nRow, int &nCol) const
    230230{
    231231        nRow = -1;
    232232        nCol = -1;
    233 QList<TCandidate> alts;
    234 TCandidate cand;
     233QList<SCandidate> alts;
     234SCandidate cand;
    235235double h = -1;
    236236double sum;
Note: See TracChangeset for help on using the changeset viewer.