Free cookie consent management tool by TermsFeed Policy Generator

source: branches/SimulationCore/HeuristicLab.SimulationCore/3.3/DiscreteEvent/Interfaces/IDiscreteEventSimulation.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: 369 bytes
Line 
1using System.Collections.Generic;
2
3namespace HeuristicLab.SimulationCore {
4  public interface IDiscreteEventSimulation<TModel> : ISimulation where TModel : class, IModel {
5    IAction<TModel> InitialAction { get; }
6    IEnumerable<IActivity<TModel>> Activities { get; }
7    IEnumerable<IReporter<TModel>> Reporters { get; }
8    TModel Model { get; }
9  }
10}
Note: See TracBrowser for help on using the repository browser.