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