- Timestamp:
- 07/30/15 18:42:18 (9 years ago)
- Location:
- branches/crossvalidation-2434
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/crossvalidation-2434
- Property svn:mergeinfo changed
/trunk/sources (added) merged: 12787,12790-12795,12797-12798,12801,12810-12812,12816-12817,12819
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Problems.QuadraticAssignment
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.QuadraticAssignment (added) merged: 12811
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement/QAPExhaustiveInversionLocalImprovement.cs
r12012 r12820 108 108 } 109 109 } 110 evaluatedSolutions.Value = (int)Math.Ceiling(evaluations);110 evaluatedSolutions.Value += (int)Math.Ceiling(evaluations); 111 111 if (bestMove == null) break; 112 112 InversionManipulator.Apply(assignment, bestMove.Index1, bestMove.Index2); -
branches/crossvalidation-2434/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement/QAPStochasticScrambleLocalImprovement.cs
r12012 r12820 119 119 } 120 120 } 121 evaluatedSolutions.Value = (int)Math.Ceiling(evaluations);121 evaluatedSolutions.Value += (int)Math.Ceiling(evaluations); 122 122 if (bestMove == null) break; 123 123 ScrambleManipulator.Apply(assignment, bestMove.StartIndex, bestMove.ScrambledIndices);
Note: See TracChangeset
for help on using the changeset viewer.