Changeset 5177 for branches/ParallelEngine/HeuristicLab.Algorithms.TabuSearch/3.3/TabuListCreator.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/TabuListCreator.cs
r4722 r5177 55 55 } 56 56 57 public override IOperation Apply( ) {57 public override IOperation Apply(IExecutionContext context) { 58 58 IVariable var; 59 59 CurrentScope.Variables.TryGetValue(TabuListParameter.ActualName, out var); … … 62 62 else 63 63 CurrentScope.Variables.Add(new Variable(TabuListParameter.ActualName, (IItem)TabuListParameter.ActualValue.Clone())); 64 return base.Apply( );64 return base.Apply(context); 65 65 } 66 66 }
Note: See TracChangeset
for help on using the changeset viewer.