Changeset 13192
- Timestamp:
- 11/16/15 21:30:18 (9 years ago)
- Location:
- stable/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement/QAPExhaustiveInversionLocalImprovement.cs
r12009 r13192 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); -
stable/HeuristicLab.Problems.QuadraticAssignment/3.3/LocalImprovement/QAPStochasticScrambleLocalImprovement.cs
r12009 r13192 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.