Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Functions/IEvaluator.cs @ 428

Last change on this file since 428 was 396, checked in by gkronber, 16 years ago

fixed ticket #205 by creating the function-specific evaluator in the evaluation operators.

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