Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/08/18 10:44:51 (6 years ago)
Author:
fholzing
Message:

#2904: Refactored RegressionSolutionVariableImpactsCalculator. We don't dependent on the solution anymore. The impact can be calculated for a single variable. The calculator can be chosen.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2904_CalculateImpacts/3.4/Interfaces/IOnlineCalculator.cs

    r15583 r15831  
    2222
    2323using System;
     24using System.Collections.Generic;
     25
    2426namespace HeuristicLab.Problems.DataAnalysis {
    2527  [Flags]
     
    4345    void Reset();
    4446    void Add(double original, double estimated);
     47    double CalculateValue(IEnumerable<double> originalValues, IEnumerable<double> estimatedValues, out OnlineCalculatorError errorState);
    4548  }
    4649}
Note: See TracChangeset for help on using the changeset viewer.