From: Steinar H. Gunderson Date: Mon, 21 Mar 2016 23:13:09 +0000 (+0100) Subject: Add a SCORE_NONE. X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=ca0adbd81304536686222c65e7a89857bc67234b;hp=4a7f980c9970e4f2ad26b43a8e43a620841ce315 Add a SCORE_NONE. --- diff --git a/src/hashprobe.proto b/src/hashprobe.proto index dfd16fdc..bb34806d 100644 --- a/src/hashprobe.proto +++ b/src/hashprobe.proto @@ -33,8 +33,9 @@ message HashProbeMove { } message HashProbeScore { enum ScoreType { - SCORE_CP = 0; - SCORE_MATE = 1; + SCORE_NONE = 0; + SCORE_CP = 1; + SCORE_MATE = 2; } ScoreType score_type = 1; int32 score_cp = 2;