Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3022-FastFunctionExtraction/FFX/IBasisFunction.cs @ 18242

Last change on this file since 18242 was 17779, checked in by gkronber, 4 years ago

#3022: made a few changes while reviewing the code.

File size: 340 bytes
Line 
1using HeuristicLab.Problems.DataAnalysis;
2
3namespace 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.