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 9 /** 10 * <p> 11 * Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 12 * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>. 13 * <p> 14 * @version $Revision: 2838 $, $LastChangedDate: 2016-12-11 14:07:37 +0100 (Sun, 11 Dec 2016) $, by $Author: averbraeck $, 15 * initial version Aug 15, 2014 <br> 16 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a> 17 */ 18 public interface OTSModelInterface extends DSOLModel<Time, Duration, OTSSimTimeDouble> 19 { 20 /** @return the network. */ 21 OTSNetwork getNetwork(); 22 }