Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/23/12 12:46:17 (12 years ago)
Author:
gkronber
Message:

#1902 fixed a bug related to the virtual call to RecalculateResults in the constructor of DiscriminantFunctionClassificationSolution

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SymbolicDiscriminantFunctionClassificationSolution.cs

    r7259 r8684  
    6666      Add(new Result(ModelLengthResultName, "Length of the symbolic classification model.", new IntValue()));
    6767      Add(new Result(ModelDepthResultName, "Depth of the symbolic classification model.", new IntValue()));
    68       RecalculateResults();
     68      CalculateSymbolicDiscriminantFunctionClassificationResults();
    6969    }
    7070
     
    7373    }
    7474
    75     protected override void RecalculateResults() {
     75    private void CalculateSymbolicDiscriminantFunctionClassificationResults() {
    7676      CalculateResults();
    7777      CalculateRegressionResults();
     
    7979      ModelDepth = Model.SymbolicExpressionTree.Depth;
    8080    }
     81
     82    protected override void RecalculateResults() {
     83      CalculateSymbolicDiscriminantFunctionClassificationResults();
     84    }
    8185  }
    8286}
Note: See TracChangeset for help on using the changeset viewer.