Last change
on this file since 407 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
|
Rev | Line | |
---|
[396] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace 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.