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

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

package aima.core.probability.mdp;

/**
 * An interface for MDP reward functions.
 * 
 * @param 
 *            the state type.
 * @author Ciaran O'Reilly
 * @author Ravi Mohan
 */
public interface RewardFunction {
	
	/**
	 * Get the reward associated with being in state s.
	 * 
	 * @param s
	 *            the state whose award is sought.
	 * @return the reward associated with being in state s.
	 */
	double reward(S s);
}