Changeset 5177 for branches/ParallelEngine/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/ThreeOpt/TranslocationMoveSoftTabuCriterion.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/ThreeOpt/TranslocationMoveSoftTabuCriterion.cs
r4722 r5177 83 83 } 84 84 85 public override IOperation Apply( ) {85 public override IOperation Apply(IExecutionContext context) { 86 86 ItemList<IItem> tabuList = TabuListParameter.ActualValue; 87 87 TranslocationMove move = TranslocationMoveParameter.ActualValue; … … 170 170 } 171 171 MoveTabuParameter.ActualValue = new BoolValue(isTabu); 172 return base.Apply( );172 return base.Apply(context); 173 173 } 174 174 }
Note: See TracChangeset
for help on using the changeset viewer.