Changeset 5178 for branches/ParallelEngine/HeuristicLab.Encodings.RealVectorEncoding/3.3/RealVectorManipulator.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/RealVectorManipulator.cs
r5177 r5178 59 59 } 60 60 61 public sealed override IOperation Apply( IExecutionContext context) {61 public sealed override IOperation Apply() { 62 62 RealVector vector = RealVectorParameter.ActualValue; 63 63 Manipulate(RandomParameter.ActualValue, vector); 64 64 DoubleMatrix bounds = BoundsParameter.ActualValue; 65 65 if (bounds != null) BoundsChecker.Apply(vector, bounds); 66 return base.Apply( context);66 return base.Apply(); 67 67 } 68 68
Note: See TracChangeset
for help on using the changeset viewer.