- Timestamp:
- 12/28/10 01:44:33 (14 years ago)
- Location:
- branches/ParallelEngine/HeuristicLab.Encodings.IntegerVectorEncoding/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/Crossovers/MultiIntegerVectorCrossover.cs
r5177 r5178 90 90 } 91 91 92 public override IOperation Apply( IExecutionContext context) {92 public override IOperation Apply() { 93 93 if (Operators.Count == 0) throw new InvalidOperationException(Name + ": Please add at least one integer vector crossover to choose from."); 94 return base.Apply( context);94 return base.Apply(); 95 95 } 96 96 } -
branches/ParallelEngine/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVectorCreator.cs
r5177 r5178 66 66 } 67 67 68 public sealed override IOperation Apply( IExecutionContext context) {68 public sealed override IOperation Apply() { 69 69 IntegerVectorParameter.ActualValue = Create(RandomParameter.ActualValue, LengthParameter.ActualValue, MinimumParameter.ActualValue, MaximumParameter.ActualValue); 70 return base.Apply( context);70 return base.Apply(); 71 71 } 72 72 -
branches/ParallelEngine/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVectorCrossover.cs
r5177 r5178 59 59 } 60 60 61 public sealed override IOperation Apply( IExecutionContext context) {61 public sealed override IOperation Apply() { 62 62 ChildParameter.ActualValue = Cross(RandomParameter.ActualValue, ParentsParameter.ActualValue); 63 return base.Apply( context);63 return base.Apply(); 64 64 } 65 65 -
branches/ParallelEngine/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVectorManipulator.cs
r5177 r5178 53 53 } 54 54 55 public sealed override IOperation Apply( IExecutionContext context) {55 public sealed override IOperation Apply() { 56 56 Manipulate(RandomParameter.ActualValue, IntegerVectorParameter.ActualValue); 57 return base.Apply( context);57 return base.Apply(); 58 58 } 59 59
Note: See TracChangeset
for help on using the changeset viewer.