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.Operators/3.3/VariableCreator.cs

    r4722 r5177  
    5353    }
    5454
    55     public override IOperation Apply() {
     55    public override IOperation Apply(IExecutionContext context) {
    5656      IVariable var;
    5757      foreach (IParameter param in CollectedValues) {
     
    6666          CurrentScope.Variables.Add(new Variable(name, param.Description, value == null ? null : (IItem)value.Clone()));
    6767      }
    68       return base.Apply();
     68      return base.Apply(context);
    6969    }
    7070  }
Note: See TracChangeset for help on using the changeset viewer.