Free cookie consent management tool by TermsFeed Policy Generator

source: branches/SimulationCore/HeuristicLab.SimulationCore/3.3/DiscreteEvent/Interfaces/IAction.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: 287 bytes
Line 
1using System;
2using HeuristicLab.Common;
3
4namespace HeuristicLab.SimulationCore {
5  public interface IAction<TModel> : IDeepCloneable, IContent where TModel : IModel {
6    Guid ActionId { get; }
7    IActivity<TModel> Mandate { get; }
8
9    void Execute(TModel model);
10  }
11}
Note: See TracBrowser for help on using the repository browser.