Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/20/08 10:48:40 (16 years ago)
Author:
gkronber
Message:

Added caching of min and max arity and the allowed sub-functions in FunctionBase. (#263 List of allowed sub-functions for each function should be cached)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Functions/IFunction.cs

    r189 r525  
    3131    double Apply(Dataset dataset, int sampleIndex, double[] args);
    3232    void Accept(IFunctionVisitor visitor);
     33    IList<IFunction> AllowedSubFunctions(int index);
     34    int MinArity { get; }
     35    int MaxArity { get; }
    3336  }
    3437}
Note: See TracChangeset for help on using the changeset viewer.