summaryrefslogtreecommitdiff
path: root/src/structs.h
blob: 5a60ba9edb11426497046a8aaf4f64dc3aa6b777 (plain)
1
2
3
4
5
6
7
8
9
10
11
typedef struct {
  int origin;
  int destination;
  int value; // Estimated move value
} Move;

typedef struct {
  int value; // Estimated position value
  int depth; // Depth -1 indicates it has not been evaluated yet
} Transposition;