Changeset 8592
- Timestamp:
- 09/06/12 16:15:16 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/HyperParameter.cs
r8582 r8592 33 33 [Storable] 34 34 private bool @fixed = false; 35 35 36 public bool Fixed { 36 37 get { return @fixed; } … … 38 39 39 40 [StorableConstructor] 40 protected HyperParameter(bool deserializing) : base(deserializing) { } 41 protected HyperParameter(bool deserializing) 42 : base(deserializing) { 43 } 44 41 45 protected HyperParameter(HyperParameter<T> original, Cloner cloner) 42 46 : base(original, cloner) { 43 47 this.@fixed = original.@fixed; 44 48 } 49 50 public HyperParameter() : base("HyperParameter", "Represents a hyperparameter for Gaussian processes.") { } 51 45 52 public HyperParameter(string name, string description) 46 53 : base(name, description) {
Note: See TracChangeset
for help on using the changeset viewer.