tacklebox/tests/01_basic.c

13 lines
241 B
C
Raw Normal View History

2024-11-16 00:17:47 +00:00
#include "../include/chess.h"
int main(void){
U64 state = rnd64(2);
ZHasher z;
z.init_state = state;
init_zhasher(&z);
Gamestate g;
parse_fen((char *)start_pos,&g);
print_state(&g,&z);
return EXIT_SUCCESS;
}