- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Operators/3.3/VariableCreator.cs
r4722 r5177 53 53 } 54 54 55 public override IOperation Apply( ) {55 public override IOperation Apply(IExecutionContext context) { 56 56 IVariable var; 57 57 foreach (IParameter param in CollectedValues) { … … 66 66 CurrentScope.Variables.Add(new Variable(name, param.Description, value == null ? null : (IItem)value.Clone())); 67 67 } 68 return base.Apply( );68 return base.Apply(context); 69 69 } 70 70 }
Note: See TracChangeset
for help on using the changeset viewer.