Geschrieben von: / Posted by: Dann Corbit at 30 July 2002 10:07:23:
Als Antwort auf: / In reply to: Re: New format of Config.dat for Pepito (built from the readme!) geschrieben von: / posted by: Gabor Szots at 30 July 2002 10:00:39:
In the old config.dat file (for v1.42) there was a line HASH_STORE_DEPTH. I think it was for experts only (probably meaning whether the search depth should be stored in the hash or not), but I wonder if it still exists.
Stuff parsed in config.c:
if (!strcmp(arg, "HASH_SIZE")) {
} else if (!strcmp(arg, "PAWN_HASH_SIZE")) {
} else if (!strcmp(arg, "ECACHE_SIZE")) {
} else if (!strcmp(arg, "GAME_STYLE")) {
if (!strcmp(arg,"solid"))
else if (!strcmp(arg,"normal"))
else if (!strcmp(arg,"agressive") || // misspelled it once, it's
!strcmp(arg,"aggressive")) // here for historical reasons
} else if (!strcmp(arg, "EGTB_PATH")) {
} else if (!strcmp(arg, "EGTB_CSIZE")) {
} else if (!strcmp(arg, "BOOK_FILE")) {
} else if (!strcmp(arg, "RESIGN_MARGIN")) {
} else if (!strcmp(arg, "USE_BOOK")) {
if (!strcmp("no", arg))
} else if (!strcmp(arg, "BOOK_RANDOM")) {
BOOK_RANDOM = strcmp("no", arg);
} else if (!strcmp(arg, "DISPLAY_MARGIN")) {
} else if (!strcmp(arg, "LANGUAGE")) {
if (!strcmp(lang_piece_str[i].language,arg))
else if (!strcmp(arg, "LOGGING")) {
if (strcmp("no", arg))
else if (!strcmp(arg, "COORD_MODE")) {
if (!strcmp("yes", arg))
else if (!strcmp(arg, "BOOK_WIDTH")) {
else if (!strcmp(arg, "BOOK_LEARN")) {
if (!strcmp("no", arg))
My Ftp Site