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

aima.core.search.framework.problem.GoalTest 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.search.framework.problem;

/**
 * Artificial Intelligence A Modern Approach (3rd Edition): page 67.
*
* The goal test, which determines whether a given state is a goal state. * * @author Ravi Mohan * @author Mike Stampone */ public interface GoalTest { /** * Returns true if the given state is a goal state. * * @return true if the given state is a goal state. */ boolean isGoalState(Object state); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy