Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TreeSimplifier/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interfaces/ISymbolicDataAnalysisImpactValuesCalculator.cs @ 8916

Last change on this file since 8916 was 8916, checked in by bburlacu, 11 years ago

#1763: Added HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views and HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views to the branch. Removed prune button, minor functionality improvements.

File size: 1.1 KB
Line 
1using System.Collections.Generic;
2using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
3
4namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
5  public interface ISymbolicDataAnalysisSolutionImpactValuesCalculator {
6    Dictionary<ISymbolicExpressionTreeNode, double> CalculateReplacementValues(ISymbolicExpressionTree tree,
7                                                                               ISymbolicDataAnalysisExpressionTreeInterpreter interpreter,
8                                                                               IDataAnalysisProblemData problemData);
9    Dictionary<ISymbolicExpressionTreeNode, double> CalculateImpactValues(ISymbolicExpressionTree tree,
10                                                                          ISymbolicDataAnalysisExpressionTreeInterpreter interpreter,
11                                                                          IDataAnalysisProblemData problemData,
12                                                                          double lowerEstimationLimit, double upperEstimationLimit);
13  }
14}
Note: See TracBrowser for help on using the repository browser.