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=f32e8bda386ab7f60c90d28b67709ae0d95627f2 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;