- Timestamp:
- 06/15/11 23:11:41 (14 years ago)
- Location:
- branches/QAPAlgorithms/HeuristicLab.Problems.QuadraticAssignment.Algorithms/3.3
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/QAPAlgorithms/HeuristicLab.Problems.QuadraticAssignment.Algorithms/3.3/HeuristicLab.Problems.QuadraticAssignment.Algorithms-3.3.csproj
r6351 r6416 107 107 </ItemGroup> 108 108 <ItemGroup> 109 <Compile Include="QAPRandomizedRobustTabooSeachOperator.cs" /> 110 <Compile Include="RandomizedRobustTabooSearch.cs" /> 109 111 <Compile Include="QAPRobustTabooSeachOperator.cs" /> 110 112 <Compile Include="RobustTabooSearch.cs" /> -
branches/QAPAlgorithms/HeuristicLab.Problems.QuadraticAssignment.Algorithms/3.3/QAPRobustTabooSeachOperator.cs
r6351 r6416 165 165 if (bestMove == null) return base.Apply(); 166 166 167 shortTermMemory[bestMove.Index1, solution[bestMove.Index 2]] = iteration;168 shortTermMemory[bestMove.Index2, solution[bestMove.Index 1]] = iteration;167 shortTermMemory[bestMove.Index1, solution[bestMove.Index1]] = iteration; 168 shortTermMemory[bestMove.Index2, solution[bestMove.Index2]] = iteration; 169 169 Swap2Manipulator.Apply(solution, bestMove.Index1, bestMove.Index2); 170 170 quality.Value += bestMoveQuality;
Note: See TracChangeset
for help on using the changeset viewer.