Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/21 16:42:21 (3 years ago)
Author:
gkronber
Message:

#3076: refactoring to prepare for trunk reintegration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3076_IA_evaluators_analyzers_reintegration/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SymbolicRegressionSplittingAnalyzer.cs

    r17821 r17892  
    155155        var problemData = RegressionProblemDataParameter.ActualValue;
    156156        var trees = SymbolicExpressionTreeParameter.ActualValue;
    157         var constraints = problemData.IntervalConstraints.EnabledConstraints;
     157        var constraints = problemData.ShapeConstraints.EnabledConstraints;
    158158        var intervalCollection = problemData.VariableRanges;
    159         var estimator = new IABoundsEstimator();
    160         var splittingEstimator = new IABoundsEstimator {UseIntervalSplitting = true, SplittingIterations = 12};
     159        var estimator = new IntervalArithBoundsEstimator();
     160        var splittingEstimator = new IntervalArithBoundsEstimator {UseIntervalSplitting = true, SplittingIterations = 12};
    161161
    162162        foreach (var solution in trees) {
Note: See TracChangeset for help on using the changeset viewer.