View Javadoc
1   package org.opentrafficsim.core.dsol;
2   
3   import nl.tudelft.simulation.dsol.simulators.DEVSSimulatorInterface;
4   
5   import org.opentrafficsim.core.unit.TimeUnit;
6   import org.opentrafficsim.core.value.vdouble.scalar.DoubleScalar;
7   
8   /**
9    * <p>
10   * Copyright (c) 2013-2014 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
11   * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
12   * <p>
13   * @version Aug 15, 2014 <br>
14   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
15   * @author <a href="http://Hansvanlint.weblog.tudelft.nl">Hans van Lint</a>
16   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
17   * @author <a href="http://www.citg.tudelft.nl">Guus Tamminga</a>
18   * @author <a href="http://www.citg.tudelft.nl">Yufei Yuan</a>
19   */
20  public interface OTSDEVSSimulatorInterface extends
21      DEVSSimulatorInterface<DoubleScalar.Abs<TimeUnit>, DoubleScalar.Rel<TimeUnit>, OTSSimTimeDouble>, OTSSimulatorInterface
22  {
23      // typed extension
24  }