Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/16/20 12:34:45 (4 years ago)
Author:
pfleck
Message:

#3040 Added parser for new benchmark data but did not commit the data yet (too large)

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/3040_VectorBasedGP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Symbols/VectorMean.cs

    r17400 r17401  
    2626namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
    2727  [StorableType("85FF9A2E-207C-4008-BB8B-0C0363885443")]
    28   [Item("VectorAverage", "Symbol that represents the average function.")]
    29   public sealed class VectorAverage : Symbol {
     28  [Item("VectorMean", "Symbol that represents the mean function.")]
     29  public sealed class VectorMean : Symbol {
    3030    private const int minimumArity = 1;
    3131    private const int maximumArity = 1;
     
    3939
    4040    [StorableConstructor]
    41     private VectorAverage(StorableConstructorFlag _) : base(_) { }
    42     private VectorAverage(VectorAverage original, Cloner cloner) : base(original, cloner) { }
     41    private VectorMean(StorableConstructorFlag _) : base(_) { }
     42    private VectorMean(VectorMean original, Cloner cloner) : base(original, cloner) { }
    4343    public override IDeepCloneable Clone(Cloner cloner) {
    44       return new VectorAverage(this, cloner);
     44      return new VectorMean(this, cloner);
    4545    }
    46     public VectorAverage() : base("VectorAverage", "Symbol that represents the average function.") { }
     46    public VectorMean() : base("VectorMean", "Symbol that represents the mean function.") { }
    4747  }
    4848}
Note: See TracChangeset for help on using the changeset viewer.