Free cookie consent management tool by TermsFeed Policy Generator

source: branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/IAggregator.cs @ 13365

Last change on this file since 13365 was 7128, checked in by epitzer, 13 years ago

#1696 Integrate fitness landscape analysis plugins from Heureka! repository.

File size: 261 bytes
Line 
1using HeuristicLab.Core;
2using HeuristicLab.Optimization;
3
4namespace 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.