source:
trunk/sources/HeuristicLab.Functions/IEvaluator.cs
@
601
Last change on this file since 601 was 483, checked in by gkronber, 16 years ago | |
---|---|
File size: 316 bytes |
Rev | Line | |
---|---|---|
[396] | 1 | using System; |
2 | using System.Collections.Generic; | |
3 | using System.Linq; | |
4 | using System.Text; | |
[483] | 5 | using HeuristicLab.DataAnalysis; |
[396] | 6 | |
7 | namespace HeuristicLab.Functions { | |
8 | public interface IEvaluator { | |
[483] | 9 | void ResetEvaluator(IFunctionTree functionTree, Dataset dataset); |
[396] | 10 | double Evaluate(int sampleIndex); |
11 | } | |
12 | } |
Note: See TracBrowser
for help on using the repository browser.