View Javadoc
1   package org.opentrafficsim.road.network.lane.conflict;
2   
3   /**
4    * Conflict rule for split conflicts.
5    * <p>
6    * Copyright (c) 2013-2024 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://github.com/peter-knoppers">Peter Knoppers</a>
11   * @author <a href="https://github.com/wjschakel">Wouter Schakel</a>
12   */
13  public class SplitConflictRule implements ConflictRule
14  {
15  
16      /**
17       * Constructor.
18       */
19      public SplitConflictRule()
20      {
21          //
22      }
23  
24      @Override
25      public final ConflictPriority determinePriority(final Conflict conflict)
26      {
27          return ConflictPriority.SPLIT;
28      }
29  
30  }