Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/10/12 13:42:43 (12 years ago)
Author:
gkronber
Message:

#1902 renamed covariance functions

File:
1 moved

Legend:

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

    r8612 r8615  
    2929namespace HeuristicLab.Algorithms.DataAnalysis {
    3030  [StorableClass]
    31   [Item(Name = "CovarianceSEiso",
     31  [Item(Name = "CovarianceSquaredExponentialIso",
    3232    Description = "Isotropic squared exponential covariance function for Gaussian processes.")]
    33   public sealed class CovarianceSEiso : ParameterizedNamedItem, ICovarianceFunction {
     33  public sealed class CovarianceSquaredExponentialIso : ParameterizedNamedItem, ICovarianceFunction {
    3434    [Storable]
    3535    private double sf2;
     
    4545
    4646    [StorableConstructor]
    47     private CovarianceSEiso(bool deserializing)
     47    private CovarianceSquaredExponentialIso(bool deserializing)
    4848      : base(deserializing) {
    4949    }
    5050
    51     private CovarianceSEiso(CovarianceSEiso original, Cloner cloner)
     51    private CovarianceSquaredExponentialIso(CovarianceSquaredExponentialIso original, Cloner cloner)
    5252      : base(original, cloner) {
    5353      this.sf2 = original.sf2;
     
    6060    }
    6161
    62     public CovarianceSEiso()
     62    public CovarianceSquaredExponentialIso()
    6363      : base() {
    6464      Name = ItemName;
     
    7575
    7676    public override IDeepCloneable Clone(Cloner cloner) {
    77       return new CovarianceSEiso(this, cloner);
     77      return new CovarianceSquaredExponentialIso(this, cloner);
    7878    }
    7979
     
    104104        i++;
    105105      }
    106       if (hyp.Length != i) throw new ArgumentException("The length of the parameter vector does not match the number of free parameters for CovarianceSEiso", "hyp");
     106      if (hyp.Length != i) throw new ArgumentException("The length of the parameter vector does not match the number of free parameters for CovarianceSquaredExponentialIso", "hyp");
    107107    }
    108108
Note: See TracChangeset for help on using the changeset viewer.