Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/11/18 10:16:56 (5 years ago)
Author:
gkronber
Message:

#2915 renamed class AnalyticalQuotient -> AnalyticQuotient

Location:
trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Converters
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Converters/TreeSimplifier.cs

    r16356 r16360  
    4343    private static readonly Square sqrSymbol = new Square();
    4444    private static readonly SquareRoot sqrtSymbol = new SquareRoot();
    45     private static readonly AnalyticalQuotient aqSymbol = new AnalyticalQuotient();
     45    private static readonly AnalyticQuotient aqSymbol = new AnalyticQuotient();
    4646    private static readonly Cube cubeSymbol = new Cube();
    4747    private static readonly CubeRoot cubeRootSymbol = new CubeRoot();
     
    186186
    187187    private static bool IsAnalyticalQuotient(ISymbolicExpressionTreeNode node) {
    188       return node.Symbol is AnalyticalQuotient;
     188      return node.Symbol is AnalyticQuotient;
    189189    }
    190190
  • trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Converters/TreeToAutoDiffTermConverter.cs

    r16356 r16360  
    222222        return abs(x1);
    223223      }
    224       if (node.Symbol is AnalyticalQuotient) {
     224      if (node.Symbol is AnalyticQuotient) {
    225225        var x1 = ConvertToAutoDiff(node.GetSubtree(0));
    226226        var x2 = ConvertToAutoDiff(node.GetSubtree(1));
     
    325325          !(n.Symbol is StartSymbol) &&
    326326          !(n.Symbol is Absolute) &&
    327           !(n.Symbol is AnalyticalQuotient) &&
     327          !(n.Symbol is AnalyticQuotient) &&
    328328          !(n.Symbol is Cube) &&
    329329          !(n.Symbol is CubeRoot)
Note: See TracChangeset for help on using the changeset viewer.