Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/13/11 13:52:22 (12 years ago)
Author:
gkronber
Message:

#1081 implemented remaining metrics for time series prognosis solutions, added estimation limits fixed training and validation best solution analyzers, implemented overfitting analyzer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/InteractiveSymbolicDataAnalysisSolutionSimplifierView.cs

    r6803 r7183  
    107107        if (tree.Root.SubtreeCount > 1)
    108108          this.treeChart.Tree = new SymbolicExpressionTree(tree.Root); // RPB + ADFs
     109        else if (tree.Root.GetSubtree(0).SubtreeCount > 1)
     110          this.treeChart.Tree = new SymbolicExpressionTree(tree.Root); // RPB
    109111        else
    110112          this.treeChart.Tree = new SymbolicExpressionTree(tree.Root.GetSubtree(0).GetSubtree(0)); // 1st child of RPB
     
    139141            if (tree.Root.SubtreeCount > 1)
    140142              this.treeChart.Tree = new SymbolicExpressionTree(tree.Root); // RPB + ADFs
     143            else if (tree.Root.GetSubtree(0).SubtreeCount > 1)
     144              this.treeChart.Tree = new SymbolicExpressionTree(tree.Root); // RPB
    141145            else
    142146              this.treeChart.Tree = new SymbolicExpressionTree(tree.Root.GetSubtree(0).GetSubtree(0)); // 1st child of RPB
Note: See TracChangeset for help on using the changeset viewer.