diff -r ab294e8db00c -r ed0292f0c7c6 2048.html
--- a/2048.html Mon Sep 08 17:43:10 2014 +0300
+++ b/2048.html Mon Sep 08 19:42:32 2014 +0300
@@ -89,6 +89,7 @@
+
@@ -358,6 +359,9 @@
document.getElementById("ai-deep-max-score-corner").addEventListener("click", function() {
ui.ai = new ai.deepMaxScoreCorner(ui.brdEngine);
});
+ document.getElementById("ai-expectimax").addEventListener("click", function() {
+ ui.ai = new ai.expectimax(ui.brdEngine);
+ });