Changeset 5177 for branches/ParallelEngine/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/ThreeOpt/TranslocationMoveHardTabuCriterion.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/TranslocationMoveHardTabuCriterion.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; … … 177 177 } 178 178 MoveTabuParameter.ActualValue = new BoolValue(isTabu); 179 return base.Apply( );179 return base.Apply(context); 180 180 } 181 181 }
Note: See TracChangeset
for help on using the changeset viewer.