All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aima.core.environment.wumpusworld.action.Climb Maven / Gradle / Ivy

package aima.core.environment.wumpusworld.action;

import aima.core.agent.impl.DynamicAction;

/**
 * Artificial Intelligence A Modern Approach (3rd Edition): page 237.
*
* The action Climb can be used to climb out of the cave, but only from square * [1,1]. * * @author Ciaran O'Reilly */ public class Climb extends DynamicAction { public static final String CLIMB_ACTION_NAME = "Climb"; public Climb() { super(CLIMB_ACTION_NAME); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy