Changeset 5178 for branches/ParallelEngine/HeuristicLab.Encodings.RealVectorEncoding/3.3/StrategyParameters/StdDevStrategyVectorManipulator.cs
- Timestamp:
- 12/28/10 01:44:33 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Encodings.RealVectorEncoding/3.3/StrategyParameters/StdDevStrategyVectorManipulator.cs
r5177 r5178 102 102 /// <remarks>Calls <see cref="OperatorBase.Apply"/> of base class <see cref="OperatorBase"/>.</remarks> 103 103 /// <inheritdoc select="returns"/> 104 public override IOperation Apply( IExecutionContext context) {104 public override IOperation Apply() { 105 105 RealVector strategyParams = StrategyParameterParameter.ActualValue; 106 106 if (strategyParams != null) { // only apply if there is a strategy vector … … 110 110 Apply(random, strategyParams, tau0, tau, BoundsParameter.ActualValue); 111 111 } 112 return base.Apply( context);112 return base.Apply(); 113 113 } 114 114 }
Note: See TracChangeset
for help on using the changeset viewer.