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

aima.core.probability.mdp.ActionsFunction Maven / Gradle / Ivy

package aima.core.probability.mdp;

import java.util.Set;

import aima.core.agent.Action;

/**
 * An interface for MDP action functions.
 * 
 * @param 
 *            the state type.
 * @param 
 *            the action type.
 * 
 * @author Ciaran O'Reilly
 * @author Ravi Mohan
 */
public interface ActionsFunction {
	/**
	 * Get the set of actions for state s.
	 * 
	 * @param s
	 *            the state.
	 * @return the set of actions for state s.
	 */
	Set actions(S s);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy