Changeset 5177 for branches/ParallelEngine/HeuristicLab.Encodings.RealVectorEncoding/3.3/RealVectorManipulator.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Encodings.RealVectorEncoding/3.3/RealVectorManipulator.cs
r4722 r5177 59 59 } 60 60 61 public sealed override IOperation Apply( ) {61 public sealed override IOperation Apply(IExecutionContext context) { 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( );66 return base.Apply(context); 67 67 } 68 68
Note: See TracChangeset
for help on using the changeset viewer.