Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/22/20 14:55:40 (4 years ago)
Author:
pfleck
Message:

#3040

  • Switched vector-simplification unit-test to infix notation to avoid ambiguities between the peek-string "VAR" for variables and the variance function.
  • Added additional unit tests for mean, length, stdev and var simplifications.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3040_VectorBasedGP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Importer/InfixExpressionParser.cs

    r17622 r17624  
    132132        { "EXPINT", new ExponentialIntegralEi()},
    133133        { "AQ", new AnalyticQuotient() },
    134         { "MEAN", new Average()},
     134        //{ "MEAN", new Average()},
    135135        { "IF", new IfThenElse()},
    136136        { "GT", new GreaterThan()},
     
    142142        { "DIFF", new Derivative()},
    143143        { "LAG", new LaggedVariable() },
     144        { "SUM", new Sum() },
     145        { "MEAN", new Mean() },
     146        { "LENGTH", new Length() },
     147        { "STDEV", new StandardDeviation() },
     148        { "VAR", new Variance() },
    144149      };
    145150
Note: See TracChangeset for help on using the changeset viewer.