namespace HeuristicLab.Algorithms.DataAnalysis.FastFunctionExtraction { interface ISimpleBasisFunction : IBasisFunction { double Exponent { get; set; } NonlinearOperator Operator { get; set; } double Threshold { get; set; } string Feature { get; set; } } }