Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/10/12 15:09:34 (12 years ago)
Author:
gkronber
Message:

#1902 renamed more files. implemented scale covariance function.

File:
1 moved

Legend:

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

    r8612 r8620  
    2626namespace HeuristicLab.Algorithms.DataAnalysis {
    2727  [StorableClass]
    28   [Item(Name = "MeanProd", Description = "Product of mean functions for Gaussian processes.")]
    29   public sealed class MeanProd : Item, IMeanFunction {
     28  [Item(Name = "MeanProduct", Description = "Product of mean functions for Gaussian processes.")]
     29  public sealed class MeanProduct : Item, IMeanFunction {
    3030    [Storable]
    3131    private ItemList<IMeanFunction> factors;
     
    3939
    4040    [StorableConstructor]
    41     private MeanProd(bool deserializing)
     41    private MeanProduct(bool deserializing)
    4242      : base(deserializing) {
    4343    }
    4444
    45     private MeanProd(MeanProd original, Cloner cloner)
     45    private MeanProduct(MeanProduct original, Cloner cloner)
    4646      : base(original, cloner) {
    4747      this.factors = cloner.Clone(original.factors);
     
    4949    }
    5050
    51     public MeanProd() {
     51    public MeanProduct() {
    5252      this.factors = new ItemList<IMeanFunction>();
    5353    }
    5454    public override IDeepCloneable Clone(Cloner cloner) {
    55       return new MeanProd(this, cloner);
     55      return new MeanProduct(this, cloner);
    5656    }
    5757
Note: See TracChangeset for help on using the changeset viewer.