Free cookie consent management tool by TermsFeed Policy Generator

Changeset 16635


Ignore:
Timestamp:
02/28/19 17:20:56 (5 years ago)
Author:
gkronber
Message:

#2971: fixed updating of IntervalResults for SymbolicRegressionSolution

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SymbolicRegressionSolution.cs

    r16627 r16635  
    132132      estimationLimitResults.Add(new Result(TestNaNEvaluationsResultName, "", new IntValue()));
    133133      Add(new Result(EstimationLimitsResultsResultName, "Results concerning the estimation limits of symbolic regression solution", estimationLimitResults));
     134      Add(new Result(IntervalEvaluationResultName, "Results concerning the derivation of symbolic regression solution", GetIntervalEvaluations()));
    134135      RecalculateResults();
    135136
    136       Add(new Result(IntervalEvaluationResultName, "Results concerning the derivation of symbolic regression solution", GetIntervalEvaluations()));
    137137      ;
    138138    }
     
    183183      return intervalEvaluation;
    184184    }
    185    
     185
    186186    private void CalculateResults() {
    187187      ModelLength = Model.SymbolicExpressionTree.Length;
Note: See TracChangeset for help on using the changeset viewer.