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

aima.core.agent.State 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.agent;

/**
 * Artificial Intelligence A Modern Approach (3rd Edition): pg 50.
* * The most effective way to handle partial observability is for the agent to * keep track of the part of the world it can't see now. That is, the agent * should maintain some sort of internal state that depends on the percept * history and thereby reflects at least some of the unobserved aspects of the * current state. * * @author Ciaran O'Reilly */ public interface State { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy