
aima.core.agent.State 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;
/**
* 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 - 2025 Weber Informatics LLC | Privacy Policy