Explain why particular months are missing
Browse files
README.md
CHANGED
@@ -12,4 +12,9 @@ column | type | description
|
|
12 |
--- | --- | ---
|
13 |
`fen` | string | FEN of the evaluated position. En passant square included only if a fully legal en passant move exists.
|
14 |
`cp` / `mate` | int *or* null | Signed evaluation of the position in centipawns or moves to mate, as computed by Stockfish. Exactly one of these is not null. Always given from White's point of view, so positive if White has the advantage
|
15 |
-
`move` | string *or* null | UCI notation of the next move played by the **human** player, if any. Always in Chess960 mode (king move to rook for castling).
|
|
|
|
|
|
|
|
|
|
|
|
12 |
--- | --- | ---
|
13 |
`fen` | string | FEN of the evaluated position. En passant square included only if a fully legal en passant move exists.
|
14 |
`cp` / `mate` | int *or* null | Signed evaluation of the position in centipawns or moves to mate, as computed by Stockfish. Exactly one of these is not null. Always given from White's point of view, so positive if White has the advantage
|
15 |
+
`move` | string *or* null | UCI notation of the next move played by the **human** player, if any. Always in Chess960 mode (king move to rook for castling).
|
16 |
+
|
17 |
+
Known issues:
|
18 |
+
|
19 |
+
* Note that even `mate` evaluations are not completely guaranteed to be correct, especially those produced before 2016.
|
20 |
+
* 2016-12, 2020-07 and 2020-08 are intentionally omitted, because due to intermittent bugs, many broken evaluations were produced in those months.
|