Changeset 76 in tspsg-svn for trunk/src/tspsolver.cpp


Ignore:
Timestamp:
Dec 16, 2009, 11:49:51 PM (14 years ago)
Author:
laleppa
Message:
  • TCandidate should, actually, be SCandidate (struct, not typedef). Renamed it.
  • Documentation update.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/tspsolver.cpp

    r74 r76  
    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.