diff options
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index 643e7f2..5a60ba9 100644 --- a/src/structs.h +++ b/src/structs.h @@ -4,3 +4,8 @@ typedef struct { 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; + |