View Javadoc

1   /*
2    * @(#)DEVDESSSimulatorInterface.java Aug 18, 2003
3    * 
4    * Copyright (c) 2003 Delft University of Technology Jaffalaan 5, 2628 BX Delft,
5    * the Netherlands All rights reserved.
6    * 
7    * This software is proprietary information of Delft University of Technology
8    * The code is published under the General Public License
9    */
10  package nl.tudelft.simulation.dsol.simulators;
11  
12  /***
13   * The DEVSDESS simulator embodies both the continuous and the discrete
14   * formalism. This simulator takes pre-defined time steps in between it loops
15   * over its eventlist. A better name for this formalism would therefore be the
16   * DEVSinDESS formalism. More information on Modeling & Simulation can be found
17   * in Theory of Modeling and Simulation by Bernard Zeigler et. al.
18   * <p>
19   * (c) copyright 2003 <a href="http://www.simulation.tudelft.nl">Delft
20   * University of Technology </a>, the Netherlands. <br>
21   * See for project information <a href="http://www.simulation.tudelft.nl">
22   * www.simulation.tudelft.nl </a> <br>
23   * License of use: <a href="http://www.gnu.org/copyleft/gpl.html">General Public
24   * License (GPL) </a>, no warranty <br>
25   * 
26   * @author <a href="http://www.simulation.tudelft.nl/people/jacobs.html">Peter
27   *         Jacobs </a>
28   * @version 1.4 2004-03-26
29   * @since 1.0
30   */
31  public interface DEVDESSSimulatorInterface extends DEVSSimulatorInterface,
32  		DESSSimulatorInterface
33  {
34  	//This interface combines the DESS and DEVS interfaces and does not add
35  	// any operations.
36  }