2048.html
changeset 20 ab294e8db00c
parent 17 06ad7999b9f6
child 21 ed0292f0c7c6
--- a/2048.html	Mon Sep 08 02:04:16 2014 +0300
+++ b/2048.html	Mon Sep 08 17:43:10 2014 +0300
@@ -88,6 +88,7 @@
       <button id="ai-next-max-score">next max score</button>
       <button id="ai-next-max-value">next max value</button>
       <button id="ai-deep-max-score">deep max score</button>
+      <button id="ai-deep-max-score-corner">deep max score corner</button>
     </div>
   </div>
 
@@ -354,6 +355,9 @@
     document.getElementById("ai-deep-max-score").addEventListener("click", function() {
       ui.ai = new ai.deepMaxScore(ui.brdEngine);
     });
+    document.getElementById("ai-deep-max-score-corner").addEventListener("click", function() {
+      ui.ai = new ai.deepMaxScoreCorner(ui.brdEngine);
+    });
 
   </script>