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-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 10 * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>. 11 * </p> 12 * @author <a href="https://github.com/averbraeck">Alexander Verbraeck</a> 13 * @author <a href="https://tudelft.nl/staff/p.knoppers-1">Peter Knoppers</a> 14 * @author <a href="https://github.com/wjschakel">Wouter Schakel</a> 15 */ 16 public class CategoricalLanePerception extends AbstractLanePerception 17 { 18 19 /** */ 20 private static final long serialVersionUID = 20160729L; 21 22 /** 23 * @param gtu LaneBasedGtu; GTU 24 */ 25 public CategoricalLanePerception(final LaneBasedGtu gtu) 26 { 27 super(gtu); 28 } 29 30 /** 31 * @param gtu LaneBasedGtu; GTU 32 * @param mental Mental; Mental 33 */ 34 public CategoricalLanePerception(final LaneBasedGtu gtu, final Mental mental) 35 { 36 super(gtu, mental); 37 } 38 39 /** {@inheritDoc} */ 40 @Override 41 public final String toString() 42 { 43 return super.toString(); 44 } 45 46 }