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

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

Go to download

AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.

The newest version!
package aima.core.environment.wumpusworld.action;

import aima.core.agent.impl.DynamicAction;

/**
 * Artificial Intelligence A Modern Approach (3rd Edition): page 237.
*
* The action Grab can be used to pick up the gold if it is in the same square * as the agent. * * @author Ciaran O'Reilly */ public class Grab extends DynamicAction { public static final String GRAB_ACTION_NAME = "Grab"; public Grab() { super(GRAB_ACTION_NAME); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy