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 | |
---|---|
File size: 261 bytes |
Line | |
---|---|
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.