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.Problems.TestFunctions/3.3/RealVectorToRealVectorEncoder.cs

    r4722 r5177  
    7373    }
    7474
    75     public override IOperation Apply() {
     75    public override IOperation Apply(IExecutionContext context) {
    7676      RealVectorParameter.ActualValue = OriginalRealVectorParameter.ActualValue;
    7777      IItem value = (IItem)BoundsParameter.ActualValue.Clone();
    7878      CurrentScope.Variables.Add(new Variable("ParticleBounds", BoundsParameter.Description, value == null ? null : (IItem)value.Clone()));
    79       return base.Apply();
     79      return base.Apply(context);
    8080    }
    8181
Note: See TracChangeset for help on using the changeset viewer.