Changeset 3910
- Timestamp:
- 06/09/10 12:22:18 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/BinaryVectorCrossover.cs
r3659 r3910 52 52 Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic crossover operators.")); 53 53 Parameters.Add(new ScopeTreeLookupParameter<BinaryVector>("Parents", "The parent vectors which should be crossed.")); 54 ParentsParameter.ActualName = "BinaryVector"; 54 55 Parameters.Add(new LookupParameter<BinaryVector>("Child", "The child vector resulting from the crossover.")); 56 ChildParameter.ActualName = "BinaryVector"; 55 57 } 56 58 -
trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVectorCrossover.cs
r3659 r3910 52 52 Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic crossover operators.")); 53 53 Parameters.Add(new ScopeTreeLookupParameter<IntegerVector>("Parents", "The parent vectors which should be crossed.")); 54 ParentsParameter.ActualName = "IntegerVector"; 54 55 Parameters.Add(new LookupParameter<IntegerVector>("Child", "The child vector resulting from the crossover.")); 56 ChildParameter.ActualName = "IntegerVector"; 55 57 } 56 58 -
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/RealVectorCrossover.cs
r3659 r3910 56 56 Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic crossover operators.")); 57 57 Parameters.Add(new ScopeTreeLookupParameter<RealVector>("Parents", "The parent vectors which should be crossed.")); 58 ParentsParameter.ActualName = "RealVector"; 58 59 Parameters.Add(new LookupParameter<RealVector>("Child", "The child vector resulting from the crossover.")); 60 ChildParameter.ActualName = "RealVector"; 59 61 Parameters.Add(new ValueLookupParameter<DoubleMatrix>("Bounds", "The lower and upper bounds of the real vector.")); 60 62 }
Note: See TracChangeset
for help on using the changeset viewer.