Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/03/10 17:20:36 (15 years ago)
Author:
abeham
Message:

updated documentation of some of the operators #890

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.RealVector/3.3/Crossovers/BlendAlphaCrossover.cs

    r2914 r2921  
    3939  [EmptyStorableClass]
    4040  public class BlendAlphaCrossover : RealVectorCrossover {
     41    /// <summary>
     42    /// The alpha parameter specifies how much the interval between the parents should be extended to the left and right.
     43    /// The value of this parameter also determines the name of the operator: BLX-0.0 for example means alpha is set to 0.
     44    /// When Alpha is 0, then the offspring will only be chosen in between the parents, the bigger alpha is the more it will be possible to choose
     45    /// values left and right of the min and max value for each gene.
     46    /// </summary>
    4147    public ValueLookupParameter<DoubleData> AlphaParameter {
    4248      get { return (ValueLookupParameter<DoubleData>)Parameters["Alpha"]; }
Note: See TracChangeset for help on using the changeset viewer.