]> git.sesse.net Git - stockfish/commitdiff
Add a SCORE_NONE.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 21 Mar 2016 23:13:09 +0000 (00:13 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Wed, 26 Dec 2018 09:43:37 +0000 (10:43 +0100)
src/hashprobe.proto

index dfd16fdcd3dcfbd4bcdc75799449d6cce69c48af..bb34806dfdc53a3a13fdbe5e679d34b987011231 100644 (file)
@@ -33,8 +33,9 @@ message HashProbeMove {
 }
 message HashProbeScore {
        enum ScoreType {
 }
 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;
        }
        ScoreType score_type = 1;
        int32 score_cp = 2;