From 29177112fa5daa6d7a418f3c54699c70607805d1 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Wed, 27 Nov 2013 21:28:43 +0100 Subject: [PATCH] Implement WB memory command This is translated to Bonanza's hash command, which probably makes it occupy significantly more memory than would really be allowed, as Bonanza uses huge other tables. --- proce.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/proce.c b/proce.c index 6d63541..896963d 100644 --- a/proce.c +++ b/proce.c @@ -245,7 +245,7 @@ Out("# command = '%s'\n", line); IF("otim") { sscanf(line+5, "%d", &hisTime); } IF("force") { forceMode = 1; } IF("go") { forceMode = 0; SetTimes(); plyNr++; strcpy(line, "move"); return 0; } - IF("memory") { sprintf(line, "hash %d", value); return 0; } + IF("memory") { ; } IF("cores") { sprintf(line, "tlp num %d", value); return 0; } IF("sd") { sprintf(line, "limit depth %d", value); return 0; } IF("st") { ; } -- 1.7.0.4