Set the max iterations back to a generous 10000 for truly great machines.
This commit is contained in:
parent
98b69155b6
commit
64a629fad1
2
game.js
2
game.js
@ -1287,7 +1287,7 @@ function generateBotQueue() {
|
|||||||
function getSimulatedBotResult(tape) {
|
function getSimulatedBotResult(tape) {
|
||||||
var simulatedBoard = deepCopy(gameGrid)
|
var simulatedBoard = deepCopy(gameGrid)
|
||||||
resetBot(gameStage.start.x,gameStage.start.y,TESTING,tape)
|
resetBot(gameStage.start.x,gameStage.start.y,TESTING,tape)
|
||||||
const MAX_ITERATIONS=2000
|
const MAX_ITERATIONS=10000
|
||||||
var iterations=0
|
var iterations=0
|
||||||
while (iterations<MAX_ITERATIONS) {
|
while (iterations<MAX_ITERATIONS) {
|
||||||
runBot(true)
|
runBot(true)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user