Last change
on this file since 17717 was
17687,
checked in by fbaching, 5 years ago
|
#1837: merged changes from trunk
- apply changes from Attic release to all SlidingWindow specific code files (replace StorableClass with StorableType)
|
File size:
682 bytes
|
Rev | Line | |
---|
[8916] | 1 | using System.Collections.Generic;
|
---|
[10681] | 2 | using HeuristicLab.Core;
|
---|
[8916] | 3 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
[17687] | 4 | using HEAL.Attic;
|
---|
[8916] | 5 |
|
---|
| 6 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
[17687] | 7 | [StorableType("b00d5149-fa66-4096-ba46-3258cbd1f42b")]
|
---|
[10681] | 8 | public interface ISymbolicDataAnalysisSolutionImpactValuesCalculator : IItem {
|
---|
| 9 | void CalculateImpactAndReplacementValues(ISymbolicDataAnalysisModel model, ISymbolicExpressionTreeNode node, IDataAnalysisProblemData problemData,
|
---|
[17687] | 10 | IEnumerable<int> rows, out double impactValue, out double replacementValue, out double newQualityForImpactsCalculation, double qualityForImpactsCalculation = double.NaN);
|
---|
[8916] | 11 | }
|
---|
| 12 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.