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.
This commit is contained in:
7
src/model/mdp/Policy.java
Normal file
7
src/model/mdp/Policy.java
Normal file
@@ -0,0 +1,7 @@
|
||||
package model.mdp;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Policy extends ArrayList<Action>{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user