Changeset 5177 for branches/ParallelEngine/HeuristicLab.Algorithms.TabuSearch/3.3/TabuNeighborhoodAnalyzer.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Algorithms.TabuSearch/3.3/TabuNeighborhoodAnalyzer.cs
r4722 r5177 58 58 } 59 59 60 public override IOperation Apply( ) {60 public override IOperation Apply(IExecutionContext context) { 61 61 ItemArray<BoolValue> tabu = IsTabuParameter.ActualValue; 62 62 if (tabu.Length > 0) { … … 77 77 } 78 78 } 79 return base.Apply( );79 return base.Apply(context); 80 80 } 81 81 }
Note: See TracChangeset
for help on using the changeset viewer.