Changeset 5177 for branches/ParallelEngine/HeuristicLab.Encodings.PermutationEncoding/3.3/Creators/RandomPermutationCreator.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/Creators/RandomPermutationCreator.cs
r4722 r5177 72 72 } 73 73 74 public override IOperation Apply( ) {74 public override IOperation Apply(IExecutionContext context) { 75 75 PermutationParameter.ActualValue = new Permutation(PermutationType, LengthParameter.ActualValue.Value, RandomParameter.ActualValue); 76 return base.Apply( );76 return base.Apply(context); 77 77 } 78 78 }
Note: See TracChangeset
for help on using the changeset viewer.