SplitConflictRule.java

  1. package org.opentrafficsim.road.network.lane.conflict;

  2. /**
  3.  * Conflict rule for split conflicts.
  4.  * <p>
  5.  * Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
  6.  * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
  7.  * </p>
  8.  * @author <a href="https://github.com/averbraeck">Alexander Verbraeck</a>
  9.  * @author <a href="https://tudelft.nl/staff/p.knoppers-1">Peter Knoppers</a>
  10.  * @author <a href="https://github.com/wjschakel">Wouter Schakel</a>
  11.  */
  12. public class SplitConflictRule implements ConflictRule
  13. {

  14.     /** {@inheritDoc} */
  15.     @Override
  16.     public final ConflictPriority determinePriority(final Conflict conflict)
  17.     {
  18.         return ConflictPriority.SPLIT;
  19.     }

  20. }