Files
cs8803p4/src/model/mdp/Policy.java
Woody Folsom d0ee1e647b Implemented agent which chooses to play winning, losing or random moves by solving a simplified MDP model of the game using policy iteration.
Portions of MDP/solver code by Ciaran O'Reilly and Ravi Mohan used under MIT license.
2012-04-30 13:35:40 -04:00

8 lines
99 B
Java

package model.mdp;
import java.util.ArrayList;
public class Policy extends ArrayList<Action>{
}