Last change
on this file since 12966 was
7128,
checked in by epitzer, 13 years ago
|
#1696 Integrate fitness landscape analysis plugins from Heureka! repository.
|
File size:
261 bytes
|
Rev | Line | |
---|
[7128] | 1 | using HeuristicLab.Core;
|
---|
| 2 | using HeuristicLab.Optimization;
|
---|
| 3 |
|
---|
| 4 | namespace HeuristicLab.Analysis.FitnessLandscape {
|
---|
| 5 |
|
---|
| 6 | public interface IAggregator : IItem {
|
---|
| 7 | void MaybeAddResult(IResult result);
|
---|
| 8 | void Reset();
|
---|
| 9 | IResult CreateResult();
|
---|
| 10 | }
|
---|
| 11 |
|
---|
| 12 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.