Last change
on this file since 16773 was
16654,
checked in by gkronber, 6 years ago
|
#2866: merged r16364:16653 from trunk to branch to prepare for trunk reintegration (resolving conflicts in the project file)
|
File size:
682 bytes
|
Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
4 | using HEAL.Attic;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
7 | [StorableType("b00d5149-fa66-4096-ba46-3258cbd1f42b")]
|
---|
8 | public interface ISymbolicDataAnalysisSolutionImpactValuesCalculator : IItem {
|
---|
9 | void CalculateImpactAndReplacementValues(ISymbolicDataAnalysisModel model, ISymbolicExpressionTreeNode node, IDataAnalysisProblemData problemData,
|
---|
10 | IEnumerable<int> rows, out double impactValue, out double replacementValue, out double newQualityForImpactsCalculation, double qualityForImpactsCalculation = double.NaN);
|
---|
11 | }
|
---|
12 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.