1 package org.opentrafficsim.road.gtu.lane.tactical;
2
3 /**
4 * Interface for tactical planners that can report their blocking status.
5 * <p>
6 * Copyright (c) 2013-2023 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
7 * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
8 * </p>
9 * @author <a href="https://github.com/averbraeck">Alexander Verbraeck</a>
10 * @author <a href="https://tudelft.nl/staff/p.knoppers-1">Peter Knoppers</a>
11 * @author <a href="https://dittlab.tudelft.nl">Wouter Schakel</a>
12 */
13 public interface Blockable
14 {
15
16 /**
17 * Returns whether the GTU is blocking conflicts.
18 * @return boolean; whether the GTU is blocking conflicts
19 */
20 boolean isBlocking();
21
22 }