source:
branches/plugins/HeuristicLab.Functions/3.2/IEvaluator.cs
@
2192
Last change on this file since 2192 was 483, checked in by gkronber, 16 years ago | |
---|---|
File size: 316 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | using HeuristicLab.DataAnalysis; |
6 | |
7 | namespace 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.