1
2
3
4
5
6
7
8
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
35
36 }