1 package org.opentrafficsim.core.dsol; 2 3 import org.djunits.value.vdouble.scalar.Duration; 4 import org.djunits.value.vdouble.scalar.Time; 5 import org.opentrafficsim.core.network.OTSNetwork; 6 7 import nl.tudelft.simulation.dsol.DSOLModel; 8 import nl.tudelft.simulation.dsol.simtime.SimTimeDoubleUnit; 9 10 /** 11 * <p> 12 * Copyright (c) 2013-2018 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 13 * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>. 14 * <p> 15 * @version $Revision: 4006 $, $LastChangedDate: 2018-09-19 13:55:45 +0200 (Wed, 19 Sep 2018) $, by $Author: averbraeck $, 16 * initial version Aug 15, 2014 <br> 17 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a> 18 */ 19 public interface OTSModelInterface extends DSOLModel<Time, Duration, SimTimeDoubleUnit> 20 { 21 /** @return the network. */ 22 OTSNetwork getNetwork(); 23 }