Changeset 5177 for branches/ParallelEngine/HeuristicLab.Optimization.Operators/3.3/DiscreteDoubleValueModifier.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Optimization.Operators/3.3/DiscreteDoubleValueModifier.cs
r4722 r5177 95 95 /// </remarks> 96 96 /// <returns>What the base class returns.</returns> 97 public override IOperation Apply( ) {97 public override IOperation Apply(IExecutionContext context) { 98 98 int index = IndexParameter.ActualValue.Value, startIndex = StartIndexParameter.ActualValue.Value; 99 99 if (index >= startIndex) { … … 115 115 value.Value = newValue; 116 116 } 117 return base.Apply( );117 return base.Apply(context); 118 118 } 119 119
Note: See TracChangeset
for help on using the changeset viewer.