Changeset 3909 for trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Crossovers/BlendAlphaCrossover.cs
- Timestamp:
- 06/09/10 12:18:43 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Crossovers/BlendAlphaCrossover.cs
r3376 r3909 54 54 public BlendAlphaCrossover() 55 55 : base() { 56 Parameters.Add(new ValueLookupParameter<DoubleValue>("Alpha", " Value for alpha", new DoubleValue(0.5)));56 Parameters.Add(new ValueLookupParameter<DoubleValue>("Alpha", "The Alpha parameter controls the extension of the range beyond the two parents. It must be >= 0. A value of 0.5 means that half the range is added to both sides of the intervals.", new DoubleValue(0.5))); 57 57 } 58 58
Note: See TracChangeset
for help on using the changeset viewer.