Changeset 5177 for branches/ParallelEngine/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/BinaryVectorCrossover.cs
- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/BinaryVectorCrossover.cs
r4722 r5177 59 59 } 60 60 61 public sealed override IOperation Apply( ) {61 public sealed override IOperation Apply(IExecutionContext context) { 62 62 ChildParameter.ActualValue = Cross(RandomParameter.ActualValue, ParentsParameter.ActualValue); 63 return base.Apply( );63 return base.Apply(context); 64 64 } 65 65
Note: See TracChangeset
for help on using the changeset viewer.