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