blob: 4e760ca3ef797d380364b51600487f4003604a1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <xorshift64.h>
#include <tak.h>
#include <actions.h>
void
zobrist_free(void);
int
zobrist_init(void);
uint64_t
zobrist_compute(void);
uint64_t
zobrist_apply(const action_t action, uint64_t hash);
|