source:
branches/3022-FastFunctionExtraction/FFX/IBasisFunction.cs
Last change on this file was 17779, checked in by gkronber, 4 years ago | |
---|---|
File size: 340 bytes |
Rev | Line | |
---|---|---|
[17737] | 1 | using HeuristicLab.Problems.DataAnalysis; |
2 | ||
3 | namespace HeuristicLab.Algorithms.DataAnalysis.FastFunctionExtraction { | |
4 | internal interface IBasisFunction { | |
5 | int Complexity { get; } | |
[17779] | 6 | bool IsDenominator { get; set; } |
7 | double[] Evaluate(IRegressionProblemData data); | |
[17737] | 8 | IBasisFunction DeepCopy(); |
9 | } | |
10 | } |
Note: See TracBrowser
for help on using the repository browser.