Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interfaces/ISymbolicDataAnalysisImpactValuesCalculator.cs @ 18242

Last change on this file since 18242 was 16565, checked in by gkronber, 6 years ago

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

File size: 682 bytes
RevLine 
[8916]1using System.Collections.Generic;
[10469]2using HeuristicLab.Core;
[8916]3using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
[16565]4using HEAL.Attic;
[8916]5
6namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
[16565]7  [StorableType("b00d5149-fa66-4096-ba46-3258cbd1f42b")]
[10469]8  public interface ISymbolicDataAnalysisSolutionImpactValuesCalculator : IItem {
9    void CalculateImpactAndReplacementValues(ISymbolicDataAnalysisModel model, ISymbolicExpressionTreeNode node, IDataAnalysisProblemData problemData,
[12720]10      IEnumerable<int> rows, out double impactValue, out double replacementValue, out double newQualityForImpactsCalculation, double qualityForImpactsCalculation = double.NaN);
[8916]11  }
12}
Note: See TracBrowser for help on using the repository browser.