Last change
on this file since 16731 was
15131,
checked in by gkronber, 7 years ago
|
#2650: merged r14826 from trunk to stable. The only remaining conflict is DataTableControl and ScatterPlotControl which have been renamed within r14982 (-> tree conflict).
|
File size:
605 bytes
|
Rev | Line | |
---|
[8916] | 1 | using System.Collections.Generic;
|
---|
[11145] | 2 | using HeuristicLab.Core;
|
---|
[8916] | 3 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 4 |
|
---|
| 5 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
[11145] | 6 | public interface ISymbolicDataAnalysisSolutionImpactValuesCalculator : IItem {
|
---|
| 7 | void CalculateImpactAndReplacementValues(ISymbolicDataAnalysisModel model, ISymbolicExpressionTreeNode node, IDataAnalysisProblemData problemData,
|
---|
[12745] | 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.