diff -r 6d5a9d8b00be -r e3a91b336976 2048.html
--- a/2048.html Mon Sep 22 01:44:48 2014 +0300
+++ b/2048.html Mon Sep 22 22:35:41 2014 +0300
@@ -235,13 +235,28 @@
+
-
deep merges without simulation make max score
-
-
@@ -732,11 +747,9 @@
var cfg = ui.ai.parseCfg(aiDom);
return new ai.OneStepAhead(ui.brdEngine, cfg);
},
- "ai-deep-max-score": function() {
- return new ai.DeepMaxScore(ui.brdEngine);
- },
- "ai-deep-max-score-corner": function() {
- return new ai.DeepMaxScoreCorner(ui.brdEngine);
+ "ai-static-deep-merges": function(aiDom) {
+ var cfg = ui.ai.parseCfg(aiDom);
+ return new ai.StaticDeepMerges(ui.brdEngine, cfg);
},
"ai-expectimax": function(aiDom) {
var cfg = ui.ai.parseCfg(aiDom);