Last change
on this file since 9511 was
8946,
checked in by mkommend, 12 years ago
|
#1763: Merged remaining changes from the TreeSimplifier branch in the trunk and refactored impact values calculators.
|
File size:
609 bytes
|
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.