Free cookie consent management tool by TermsFeed Policy Generator

source: branches/SimulationCore/HeuristicLab.SimulationCore/3.3/DiscreteEvent/Interfaces/IEvent.cs @ 10454

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

#1610: Added a base infrastructure for discrete event simulation

File size: 221 bytes
Line 
1using HeuristicLab.Common;
2
3namespace HeuristicLab.SimulationCore {
4  public interface IEvent<TModel> : IDeepCloneable where TModel : IModel {
5    double Time { get; }
6    IAction<TModel> Action { get; }
7  }
8}
Note: See TracBrowser for help on using the repository browser.