View Javadoc
1   package org.opentrafficsim.road.gtu.lane.perception;
2   
3   import org.opentrafficsim.road.gtu.lane.LaneBasedGTU;
4   import org.opentrafficsim.road.gtu.lane.perception.mental.Mental;
5   
6   /**
7    * Standard perception completely based on connected perception categories.
8    * <p>
9    * Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
10   * BSD-style license. See <a href="http://opentrafficsim.org/docs/current/license.html">OpenTrafficSim License</a>.
11   * <p>
12   * @version $Revision$, $LastChangedDate$, by $Author$, initial version Jul 29, 2016 <br>
13   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
14   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
15   * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
16   */
17  public class CategoricalLanePerception extends AbstractLanePerception
18  {
19  
20      /** */
21      private static final long serialVersionUID = 20160729L;
22  
23      /**
24       * @param gtu LaneBasedGTU; GTU
25       */
26      public CategoricalLanePerception(final LaneBasedGTU gtu)
27      {
28          super(gtu);
29      }
30  
31      /**
32       * @param gtu LaneBasedGTU; GTU
33       * @param mental Mental; Mental
34       */
35      public CategoricalLanePerception(final LaneBasedGTU gtu, final Mental mental)
36      {
37          super(gtu, mental);
38      }
39  
40      /** {@inheritDoc} */
41      @Override
42      public final String toString()
43      {
44          return super.toString();
45      }
46  
47  }