eval-simple.c: game phases, multiple PCT

This commit is contained in:
2024-07-21 18:08:10 +02:00
parent 30ac647fe5
commit eebc0f8025
9 changed files with 548 additions and 143 deletions

View File

@@ -19,7 +19,7 @@
#include "bitboard.h"
#include "hq.h"
#include "eval-simple.h"
#include "hash.h"
#include "hist.h"
@@ -52,5 +52,9 @@ void init_all(void)
printff("transposition tables... ");
tt_create(HASH_SIZE_DEFAULT);
/* eval tables */
printf("eval data... ");
eval_simple_init();
printf("done.\n");
}