Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/10 15:10:36 (14 years ago)
Author:
abeham
Message:

#893

  • Changed the way offspring selection works
  • Added depth parameter to ScopeTreeLookupParameter
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Parameters/3.3/ScopeTreeLookupParameter.cs

    r3687 r3740  
    5555      depth = 1;
    5656    }
     57    public ScopeTreeLookupParameter(string name, int depth)
     58      : base(name) {
     59      this.depth = depth;
     60    }
    5761    public ScopeTreeLookupParameter(string name, string description)
    5862      : base(name, description) {
    5963      depth = 1;
    6064    }
     65    public ScopeTreeLookupParameter(string name, string description, int depth)
     66      : base(name, description) {
     67      this.depth = depth;
     68    }
    6169    public ScopeTreeLookupParameter(string name, string description, string actualName)
    6270      : base(name, description, actualName) {
    6371      depth = 1;
     72    }
     73    public ScopeTreeLookupParameter(string name, string description, string actualName, int depth)
     74      : base(name, description, actualName) {
     75      this.depth = depth;
    6476    }
    6577    [StorableConstructor]
Note: See TracChangeset for help on using the changeset viewer.