projects
/
stockfish
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
678d7c5
)
Add a SCORE_NONE.
author
Steinar H. Gunderson
<sgunderson@bigfoot.com>
Mon, 21 Mar 2016 23:13:09 +0000
(
00:13
+0100)
committer
Steinar H. Gunderson
<sgunderson@bigfoot.com>
Wed, 26 Dec 2018 09:43:37 +0000
(10:43 +0100)
src/hashprobe.proto
patch
|
blob
|
history
diff --git
a/src/hashprobe.proto
b/src/hashprobe.proto
index dfd16fdcd3dcfbd4bcdc75799449d6cce69c48af..bb34806dfdc53a3a13fdbe5e679d34b987011231 100644
(file)
--- 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;