Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/26/10 03:51:30 (14 years ago)
Author:
swagner
Message:

Removed property ExecutionContext in Operator (#1333)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ParallelEngine/HeuristicLab.Algorithms.TabuSearch/3.3/TabuListCreator.cs

    r4722 r5177  
    5555    }
    5656
    57     public override IOperation Apply() {
     57    public override IOperation Apply(IExecutionContext context) {
    5858      IVariable var;
    5959      CurrentScope.Variables.TryGetValue(TabuListParameter.ActualName, out var);
     
    6262      else
    6363        CurrentScope.Variables.Add(new Variable(TabuListParameter.ActualName, (IItem)TabuListParameter.ActualValue.Clone()));
    64       return base.Apply();
     64      return base.Apply(context);
    6565    }
    6666  }
Note: See TracChangeset for help on using the changeset viewer.