X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fhashprobe.proto;h=a7efa8ce8c13683b4cd94a5397c1e677d6c57775;hp=393553e94b46043ca75af59db3c550b82aa8ed79;hb=4c1a8ff9da057987e34936af8743a4d179a472dc;hpb=ef014e110098db03e9380f09bd2e92cf02bf760d;ds=sidebyside diff --git a/src/hashprobe.proto b/src/hashprobe.proto index 393553e9..a7efa8ce 100644 --- a/src/hashprobe.proto +++ b/src/hashprobe.proto @@ -3,8 +3,13 @@ message HashProbeRequest { string fen = 1; } message HashProbeResponse { + repeated HashProbeMove move = 1; +} +message HashProbeMove { + int32 move = 7; // See types.h + bool found = 1; - int32 move = 2; // See types.h + int32 pv_move = 2; // See types.h int32 value = 3; // Dynamic eval (may be inexact, see the "bound" field) int32 eval = 4; // Static eval int32 depth = 5;