1 package org.opentrafficsim.road.gtu.lane.perception.mental; 2 3 import org.opentrafficsim.base.parameters.ParameterException; 4 import org.opentrafficsim.core.gtu.GtuException; 5 import org.opentrafficsim.road.gtu.lane.perception.LanePerception; 6 7 /** 8 * Interface for mental modules operating on perception. This is a first step of perception, where parameters both for the 9 * perception and tactical models can be set. 10 * <p> 11 * Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 12 * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>. 13 * </p> 14 * @author <a href="https://github.com/averbraeck">Alexander Verbraeck</a> 15 * @author <a href="https://tudelft.nl/staff/p.knoppers-1">Peter Knoppers</a> 16 * @author <a href="https://github.com/wjschakel">Wouter Schakel</a> 17 */ 18 public interface Mental 19 { 20 21 /** 22 * Apply mental model on perception. 23 * @param perception LanePerception; perception 24 * @throws ParameterException if a parameter is missing or out of bounds 25 * @throws GtuException exceptions pertaining to the GTU 26 */ 27 void apply(LanePerception perception) throws ParameterException, GtuException; 28 29 }