- Timestamp:
- 05/06/10 00:47:32 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/Crossovers/MultiIntegerVectorCrossover.cs
r3593 r3659 52 52 public MultiIntegerVectorCrossover() 53 53 : base() { 54 Parameters.Add(new S ubScopesLookupParameter<IntegerVector>("Parents", "The parent integer vector which should be crossed."));54 Parameters.Add(new ScopeTreeLookupParameter<IntegerVector>("Parents", "The parent integer vector which should be crossed.")); 55 55 ParentsParameter.ActualName = "IntegerVector"; 56 56 Parameters.Add(new LookupParameter<IntegerVector>("Child", "The child integer vector resulting from the crossover.")); -
trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVectorCrossover.cs
r3520 r3659 42 42 } 43 43 public ILookupParameter<ItemArray<IntegerVector>> ParentsParameter { 44 get { return (S ubScopesLookupParameter<IntegerVector>)Parameters["Parents"]; }44 get { return (ScopeTreeLookupParameter<IntegerVector>)Parameters["Parents"]; } 45 45 } 46 46 public ILookupParameter<IntegerVector> ChildParameter { … … 51 51 : base() { 52 52 Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic crossover operators.")); 53 Parameters.Add(new S ubScopesLookupParameter<IntegerVector>("Parents", "The parent vectors which should be crossed."));53 Parameters.Add(new ScopeTreeLookupParameter<IntegerVector>("Parents", "The parent vectors which should be crossed.")); 54 54 Parameters.Add(new LookupParameter<IntegerVector>("Child", "The child vector resulting from the crossover.")); 55 55 }
Note: See TracChangeset
for help on using the changeset viewer.