diff options
Diffstat (limited to 'src/ctlm.c')
| -rw-r--r-- | src/ctlm.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -384,7 +384,7 @@ input_is_not_turn(const char *line) { } else if (!strcmp(line,"log")) { puts(gamelog); } else if (!strcmp(line,"new")) { - new_game(5); + new_game(6); } else if (!strcmp(line,"tps")) { char buf[1000]; generate_tps(buf); @@ -433,7 +433,7 @@ input_is_not_turn(const char *line) { || (line[5] == 'w' || line[5] == 'W'))) { // 'b' is even :) human = 1 - (line[5] & 1); - new_game(5); + new_game(6); } else { puts("Usage: play (b|w)."); } @@ -455,9 +455,9 @@ int main(int argc, char **argv) { puts(license); - negamax_search_depth = 5; - new_game(5); - negamax_init(5); + negamax_search_depth = 4; + new_game(6); + negamax_init(6); // Test harness if (argc > 1) { |
