Changeset 5177 for branches/ParallelEngine/HeuristicLab.Problems.TestFunctions/3.3/RealVectorToRealVectorEncoder.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Problems.TestFunctions/3.3/RealVectorToRealVectorEncoder.cs
r4722 r5177 73 73 } 74 74 75 public override IOperation Apply( ) {75 public override IOperation Apply(IExecutionContext context) { 76 76 RealVectorParameter.ActualValue = OriginalRealVectorParameter.ActualValue; 77 77 IItem value = (IItem)BoundsParameter.ActualValue.Clone(); 78 78 CurrentScope.Variables.Add(new Variable("ParticleBounds", BoundsParameter.Description, value == null ? null : (IItem)value.Clone())); 79 return base.Apply( );79 return base.Apply(context); 80 80 } 81 81
Note: See TracChangeset
for help on using the changeset viewer.