Free cookie consent management tool by TermsFeed Policy Generator

source: branches/SimulationCore/HeuristicLab.SimulationCore/3.3/DiscreteEvent/Interfaces/IReporter.cs @ 10450

Last change on this file since 10450 was 10450, checked in by abeham, 10 years ago

#1610: Added a base infrastructure for discrete event simulation

File size: 262 bytes
Line 
1using HeuristicLab.Common;
2using HeuristicLab.Optimization;
3
4namespace HeuristicLab.SimulationCore {
5  public interface IReporter<TModel> : IDeepCloneable where TModel : IModel {
6    void UpdateReporting(TModel model, ResultCollection results);
7  }
8}
Note: See TracBrowser for help on using the repository browser.