Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/IAggregator.cs @ 16577

Last change on this file since 16577 was 16577, checked in by gkronber, 5 years ago

#2520: added missing StorableType attributes for interfaces

File size: 336 bytes
Line 
1using HeuristicLab.Core;
2using HeuristicLab.Optimization;
3using HEAL.Attic;
4
5namespace HeuristicLab.Analysis.FitnessLandscape {
6  [StorableType("C167C0FA-EF7E-4861-939D-6FAB9EFCCDAF")]
7  public interface IAggregator : IItem {
8    void MaybeAddResult(IResult result);
9    void Reset();
10    IResult CreateResult();
11  }
12
13}
Note: See TracBrowser for help on using the repository browser.