Rev | Line | |
---|
[8916] | 1 | using System.Collections.Generic;
|
---|
[10469] | 2 | using HeuristicLab.Core;
|
---|
[8916] | 3 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 4 |
|
---|
| 5 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
[10469] | 6 | public interface ISymbolicDataAnalysisSolutionImpactValuesCalculator : IItem {
|
---|
| 7 | void CalculateImpactAndReplacementValues(ISymbolicDataAnalysisModel model, ISymbolicExpressionTreeNode node, IDataAnalysisProblemData problemData,
|
---|
[12720] | 8 | IEnumerable<int> rows, out double impactValue, out double replacementValue, out double newQualityForImpactsCalculation, double qualityForImpactsCalculation = double.NaN);
|
---|
[8916] | 9 | }
|
---|
| 10 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.