- Timestamp:
- Dec 18, 2009, 2:07:48 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/tspsolver.cpp
r78 r79 221 221 void CTSPSolver::deleteNode(SStep *&node) 222 222 { 223 static int x;224 x++;225 qDebug() << ">>>" << x;223 //static int x; 224 // x++; 225 //qDebug() << ">>>" << x; 226 226 if (node->plNode != NULL) 227 227 deleteNode(node->plNode); … … 230 230 delete node; 231 231 node = NULL; 232 qDebug() << "<<<" << x;233 x--;232 //qDebug() << "<<<" << x; 233 // x--; 234 234 } 235 235
Note: See TracChangeset
for help on using the changeset viewer.