- Timestamp:
- 07/30/15 14:58:10 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement/QAPExhaustiveInversionLocalImprovement.cs
r12012 r12811 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); -
trunk/sources/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement/QAPStochasticScrambleLocalImprovement.cs
r12012 r12811 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.