Changeset 5177 for branches/ParallelEngine/HeuristicLab.Encodings.RealVectorEncoding/3.3/RealVectorCrossover.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/RealVectorCrossover.cs
r4722 r5177 65 65 } 66 66 67 public sealed override IOperation Apply( ) {67 public sealed override IOperation Apply(IExecutionContext context) { 68 68 RealVector result = Cross(RandomParameter.ActualValue, ParentsParameter.ActualValue); 69 69 DoubleMatrix bounds = BoundsParameter.ActualValue; 70 70 if (bounds != null) BoundsChecker.Apply(result, bounds); 71 71 ChildParameter.ActualValue = result; 72 return base.Apply( );72 return base.Apply(context); 73 73 } 74 74
Note: See TracChangeset
for help on using the changeset viewer.