Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/25/09 17:46:17 (15 years ago)
Author:
gkronber
Message:

Fixed #645 (Tree evaluators precompile the model for each evaluation of a row).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/ITreeEvaluator.cs

    r1796 r1891  
    3232  public interface ITreeEvaluator : IItem {
    3333    void ResetEvaluator(Dataset dataset, int targetVariable, int start, int end, double punishmentFactor);
    34     double Evaluate(IFunctionTree functionTree, int sampleIndex);
     34    void PrepareForEvaluation(IFunctionTree functionTree);
     35    double Evaluate(int sampleIndex);
    3536  }
    3637}
Note: See TracChangeset for help on using the changeset viewer.