Changeset 5177 for branches/ParallelEngine/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves/AdditiveMoveTabuChecker.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves/AdditiveMoveTabuChecker.cs
r4722 r5177 81 81 } 82 82 83 public override IOperation Apply( ) {83 public override IOperation Apply(IExecutionContext context) { 84 84 ItemList<IItem> tabuList = TabuListParameter.ActualValue; 85 85 AdditiveMove move = AdditiveMoveParameter.ActualValue; … … 106 106 } 107 107 MoveTabuParameter.ActualValue = new BoolValue(isTabu); 108 return base.Apply( );108 return base.Apply(context); 109 109 } 110 110 }
Note: See TracChangeset
for help on using the changeset viewer.