Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/27/10 03:10:17 (14 years ago)
Author:
swagner
Message:

Enabled users to choose whether a parameter should be collected in each run or not (#1113)

File:
1 edited

Legend:

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

    r4068 r4332  
    4141    public ValueParameter() : base() { }
    4242    public ValueParameter(string name) : base(name) { }
     43    public ValueParameter(string name, bool getsCollected) : base(name, getsCollected) { }
    4344    public ValueParameter(string name, T value) : base(name, value) { }
     45    public ValueParameter(string name, T value, bool getsCollected) : base(name, value, getsCollected) { }
    4446    public ValueParameter(string name, string description) : base(name, description) { }
     47    public ValueParameter(string name, string description, bool getsCollected) : base(name, description, getsCollected) { }
    4548    public ValueParameter(string name, string description, T value) : base(name, description, value) { }
     49    public ValueParameter(string name, string description, T value, bool getsCollected) : base(name, description, value, getsCollected) { }
     50    [StorableConstructor]
     51    protected ValueParameter(bool deserializing) : base(deserializing) { }
    4652  }
    4753}
Note: See TracChangeset for help on using the changeset viewer.