diff options
| author | tslil <tslil@posteo.de> | 2021-03-27 23:59:33 -0400 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-08-28 19:37:41 +0100 |
| commit | 35dc86f8476250f693aa419f404b2b4c8c381d92 (patch) | |
| tree | 678cd42cdbf0e46662dd2e71694e6c496d8e2279 /src/ctlm.c | |
| parent | 00a04c2929bdc8f8f4bf7d5d8cf413ebfb3cd006 (diff) | |
Playing around with huge nn's, poorly trained.sixes
Not great at shallow depths
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) { |
