- Timestamp:
- 05/06/10 00:47:32 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.BinaryVectorEncoding/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/BinaryVectorCrossover.cs
r3520 r3659 42 42 } 43 43 public ILookupParameter<ItemArray<BinaryVector>> ParentsParameter { 44 get { return (S ubScopesLookupParameter<BinaryVector>)Parameters["Parents"]; }44 get { return (ScopeTreeLookupParameter<BinaryVector>)Parameters["Parents"]; } 45 45 } 46 46 public ILookupParameter<BinaryVector> 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<BinaryVector>("Parents", "The parent vectors which should be crossed."));53 Parameters.Add(new ScopeTreeLookupParameter<BinaryVector>("Parents", "The parent vectors which should be crossed.")); 54 54 Parameters.Add(new LookupParameter<BinaryVector>("Child", "The child vector resulting from the crossover.")); 55 55 } -
trunk/sources/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/Crossovers/MultiBinaryVectorCrossover.cs
r3593 r3659 52 52 public MultiBinaryVectorCrossover() 53 53 : base() { 54 Parameters.Add(new S ubScopesLookupParameter<BinaryVector>("Parents", "The parent binary vector which should be crossed."));54 Parameters.Add(new ScopeTreeLookupParameter<BinaryVector>("Parents", "The parent binary vector which should be crossed.")); 55 55 ParentsParameter.ActualName = "BinaryVector"; 56 56 Parameters.Add(new LookupParameter<BinaryVector>("Child", "The child binary vector resulting from the crossover."));
Note: See TracChangeset
for help on using the changeset viewer.