Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/03/10 17:20:36 (14 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/Manipulators/MichalewiczNonUniformOnePositionManipulator.cs

    r2915 r2921  
    3737  [EmptyStorableClass]
    3838  public class MichalewiczNonUniformOnePositionManipulator : RealVectorManipulator {
     39    /// <summary>
     40    /// The lower bound of the values in the real vector.
     41    /// </summary>
    3942    public ValueLookupParameter<DoubleData> MinimumParameter {
    4043      get { return (ValueLookupParameter<DoubleData>)Parameters["Minimum"]; }
    4144    }
     45    /// <summary>
     46    /// The upper bound of the values in the real vector.
     47    /// </summary>
    4248    public ValueLookupParameter<DoubleData> MaximumParameter {
    4349      get { return (ValueLookupParameter<DoubleData>)Parameters["Maximum"]; }
    4450    }
     51    /// <summary>
     52    /// The current generation.
     53    /// </summary>
    4554    public LookupParameter<IntData> GenerationParameter {
    4655      get { return (LookupParameter<IntData>)Parameters["Generation"]; }
    4756    }
     57    /// <summary>
     58    /// The maximum generation.
     59    /// </summary>
    4860    public LookupParameter<IntData> MaximumGenerationsParameter {
    4961      get { return (LookupParameter<IntData>)Parameters["MaximumGenerations"]; }
    5062    }
     63    /// <summary>
     64    /// The parameter describing how much the mutation should depend on the progress towards the maximum generation.
     65    /// </summary>
    5166    public ValueLookupParameter<DoubleData> GenerationDependencyParameter {
    5267      get { return (ValueLookupParameter<DoubleData>)Parameters["GenerationDependency"]; }
Note: See TracChangeset for help on using the changeset viewer.