From 35dc86f8476250f693aa419f404b2b4c8c381d92 Mon Sep 17 00:00:00 2001 From: tslil Date: Sat, 27 Mar 2021 23:59:33 -0400 Subject: Playing around with huge nn's, poorly trained. Not great at shallow depths --- src/ctlm.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/ctlm.c') diff --git a/src/ctlm.c b/src/ctlm.c index b9deb15..0288be8 100644 --- a/src/ctlm.c +++ b/src/ctlm.c @@ -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) { -- cgit v1.2.3