summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rwxr-xr-xsrc/main.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/main.c b/src/main.c
index 52e1bb6..3267da6 100755
--- a/src/main.c
+++ b/src/main.c
@@ -79,16 +79,9 @@ Return value:
#ifdef DUMP_TREE
Trace(" Search tree dumpfile generation enabled\n");
#endif
-#ifdef EVAL_HASH
- Trace(" Hash sizes: %u Mb (main), %u Mb / thread (pawn), %u Mb / thread (eval)\n",
- (g_uHashTableSizeEntries * sizeof(HASH_ENTRY)) / MB,
- PAWN_HASH_TABLE_SIZE * sizeof(PAWN_HASH_ENTRY) / MB,
- EVAL_HASH_TABLE_SIZE * sizeof(EVAL_HASH_ENTRY) / MB);
-#else
Trace(" Hash sizes: %u Mb (main), %u Mb / thread (pawn)\n",
(g_uHashTableSizeEntries * sizeof(HASH_ENTRY)) / MB,
PAWN_HASH_TABLE_SIZE * sizeof(PAWN_HASH_ENTRY) / MB);
-#endif
Trace(" QCheckPlies: %u\n", QPLIES_OF_NON_CAPTURE_CHECKS);
Trace(" FutilityBase: %u\n", FUTILITY_BASE_MARGIN);
p = ExportEvalDNA();