Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/06/10 00:47:32 (14 years ago)
Author:
swagner
Message:

Worked on refactoring of algorithm analysis and tracing (#999)

  • removed SubScopesSubScopesLookupParameter
  • adapted SubScopesLookupParameter and renamed it into ScopeTreeLookupParameter
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Crossovers/HeuristicCrossover.cs

    r3376 r3659  
    4747    /// The quality of the parents.
    4848    /// </summary>
    49     public SubScopesLookupParameter<DoubleValue> QualityParameter {
    50       get { return (SubScopesLookupParameter<DoubleValue>)Parameters["Quality"]; }
     49    public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
     50      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
    5151    }
    5252
     
    5858      : base() {
    5959      Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "Whether the problem is a maximization problem or not."));
    60       Parameters.Add(new SubScopesLookupParameter<DoubleValue>("Quality", "The quality values of the parents."));
     60      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The quality values of the parents."));
    6161    }
    6262
Note: See TracChangeset for help on using the changeset viewer.