Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/19 12:09:34 (6 years ago)
Author:
chaider
Message:

#2971 Renamed NamedIntervals to IntervalCollection

File:
1 edited

Legend:

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

    r16851 r16904  
    9898    }
    9999
    100     public NamedIntervals IntervalEvaluationCollection {
    101       get { return (NamedIntervals)this[IntervalEvaluationResultName].Value; }
     100    public IntervalCollection IntervalEvaluationCollection {
     101      get { return (IntervalCollection)this[IntervalEvaluationResultName].Value; }
    102102      private set { this[IntervalEvaluationResultName].Value = value; }
    103103    }
     
    127127      estimationLimitResults.Add(new Result(TestNaNEvaluationsResultName, "", new IntValue()));
    128128      Add(new Result(EstimationLimitsResultsResultName, "Results concerning the estimation limits of symbolic regression solution", estimationLimitResults));
    129       Add(new Result(IntervalEvaluationResultName, "Results concerning the derivation of symbolic regression solution", new NamedIntervals()));
     129      Add(new Result(IntervalEvaluationResultName, "Results concerning the derivation of symbolic regression solution", new IntervalCollection()));
    130130      RecalculateResults();
    131131    }
     
    147147        estimationLimitResults.Add(new Result(TestNaNEvaluationsResultName, "", new IntValue()));
    148148        Add(new Result(EstimationLimitsResultsResultName, "Results concerning the estimation limits of symbolic regression solution", estimationLimitResults));
    149         Add(new Result(IntervalEvaluationResultName, "Results concerning the derivation of symbolic regression solution", new NamedIntervals()));
     149        Add(new Result(IntervalEvaluationResultName, "Results concerning the derivation of symbolic regression solution", new IntervalCollection()));
    150150        CalculateResults();
    151151      }
     
    174174    }
    175175
    176     private static NamedIntervals CalculateModelIntervals(ISymbolicRegressionSolution solution) {
    177       var intervalEvaluation = new NamedIntervals();
     176    private static IntervalCollection CalculateModelIntervals(ISymbolicRegressionSolution solution) {
     177      var intervalEvaluation = new IntervalCollection();
    178178      var interpreter = new IntervalInterpreter();
    179179      var problemData = solution.ProblemData;
Note: See TracChangeset for help on using the changeset viewer.