1 package org.opentrafficsim.road.gtu.strategical;
2
3 import org.djunits.value.vdouble.scalar.Time;
4 import org.opentrafficsim.core.gtu.plan.strategical.StrategicalPlanner;
5 import org.opentrafficsim.road.gtu.lane.LaneBasedGtu;
6 import org.opentrafficsim.road.gtu.lane.tactical.LaneBasedTacticalPlanner;
7
8 /**
9 * Interface for lane-based strategical planners. It specifies output of certain methods to produce lane-based objects.
10 * <p>
11 * Copyright (c) 2013-2023 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
12 * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
13 * </p>
14 * @author <a href="https://github.com/averbraeck">Alexander Verbraeck</a>
15 * @author <a href="https://tudelft.nl/staff/p.knoppers-1">Peter Knoppers</a>
16 */
17 public interface LaneBasedStrategicalPlanner extends StrategicalPlanner
18 {
19
20 /** {@inheritDoc} */
21 @Override
22 LaneBasedGtu getGtu();
23
24 /** {@inheritDoc} */
25 @Override
26 LaneBasedTacticalPlanner getTacticalPlanner();
27
28 /** {@inheritDoc} */
29 @Override
30 LaneBasedTacticalPlanner getTacticalPlanner(Time time);
31
32 }