Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HL-3.2-MonoMigration/HeuristicLab.Functions/IEvaluator.cs @ 638

Last change on this file since 638 was 483, checked in by gkronber, 16 years ago

fixed a bug uncovered by r482

File size: 316 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.DataAnalysis;
6
7namespace HeuristicLab.Functions {
8  public interface IEvaluator {
9    void ResetEvaluator(IFunctionTree functionTree, Dataset dataset);
10    double Evaluate(int sampleIndex);
11  }
12}
Note: See TracBrowser for help on using the repository browser.