aima.core.agent.Action Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aima-core Show documentation
Show all versions of aima-core Show documentation
AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.
package aima.core.agent;
/**
* Describes an Action that can or has been taken by an Agent via one of its
* Actuators.
*
* @author Ciaran O'Reilly
*/
public interface Action {
/**
* Indicates whether or not this Action is a 'No Operation'.
* Note: AIMA3e - NoOp, or no operation, is the name of an assembly language
* instruction that does nothing.
*
* @return true if this is a NoOp Action.
*/
boolean isNoOp();
}