Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/06/12 16:15:16 (12 years ago)
Author:
gkronber
Message:

#1902 added default ctor for HyperParameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/HyperParameter.cs

    r8582 r8592  
    3333    [Storable]
    3434    private bool @fixed = false;
     35
    3536    public bool Fixed {
    3637      get { return @fixed; }
     
    3839
    3940    [StorableConstructor]
    40     protected HyperParameter(bool deserializing) : base(deserializing) { }
     41    protected HyperParameter(bool deserializing)
     42      : base(deserializing) {
     43    }
     44
    4145    protected HyperParameter(HyperParameter<T> original, Cloner cloner)
    4246      : base(original, cloner) {
    4347      this.@fixed = original.@fixed;
    4448    }
     49
     50    public HyperParameter() : base("HyperParameter", "Represents a hyperparameter for Gaussian processes.") { }
     51
    4552    public HyperParameter(string name, string description)
    4653      : base(name, description) {
Note: See TracChangeset for help on using the changeset viewer.