Rev | Line | |
---|
[8916] | 1 | using System.Collections.Generic;
|
---|
| 2 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 3 |
|
---|
| 4 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
| 5 | public interface ISymbolicDataAnalysisSolutionImpactValuesCalculator {
|
---|
[8946] | 6 | double CalculateReplacementValue(ISymbolicDataAnalysisModel model, ISymbolicExpressionTreeNode node, IDataAnalysisProblemData problemData, IEnumerable<int> rows);
|
---|
| 7 | double CalculateImpactValue(ISymbolicDataAnalysisModel model, ISymbolicExpressionTreeNode node, IDataAnalysisProblemData problemData, IEnumerable<int> rows, double originalQuality = double.NaN);
|
---|
[8916] | 8 | }
|
---|
| 9 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.