--- a/2048.html Mon Sep 15 02:50:32 2014 +0300
+++ b/2048.html Mon Sep 15 02:54:09 2014 +0300
@@ -559,29 +559,29 @@
ui.ai.algList = {
"ai-blind-random": function() {
- return new ai.blindRandom(ui.brdEngine);
+ return new ai.BlindRandom(ui.brdEngine);
},
"ai-blind-weight-random": function(aiDom) {
var cfg = {};
ui.ai.parseCfg(aiDom, cfg);
- return new ai.blindWeightRandom(ui.brdEngine, cfg);
+ return new ai.BlindWeightRandom(ui.brdEngine, cfg);
},
"ai-blind-cycle": function(aiDom) {
var cfg = {};
cfg.clockwise = aiDom.querySelectorAll("input[name='clockwise']")[0].checked;
cfg.whilePossible = aiDom.querySelectorAll("input[name='whilePossible']")[0].checked;
- return new ai.blindCycle(ui.brdEngine, cfg);
+ return new ai.BlindCycle(ui.brdEngine, cfg);
},
"ai-one-step-deep": function(aiDom) {
var cfg = {};
ui.ai.parseCfg(aiDom, cfg);
- return new ai.oneStepDeep(ui.brdEngine, cfg);
+ return new ai.OneStepDeep(ui.brdEngine, cfg);
},
"ai-deep-max-score": function() {
- return new ai.deepMaxScore(ui.brdEngine);
+ return new ai.DeepMaxScore(ui.brdEngine);
},
"ai-deep-max-score-corner": function() {
- return new ai.deepMaxScoreCorner(ui.brdEngine);
+ return new ai.DeepMaxScoreCorner(ui.brdEngine);
},
"ai-expectimax": function() {
return new ai.expectimax(ui.brdEngine);