From: Steinar H. Gunderson Date: Thu, 17 Mar 2016 09:39:14 +0000 (+0100) Subject: Write out null-move and no move. X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=6178f8592d822869d2bdbf08a201900c4b584f30;ds=sidebyside Write out null-move and no move. --- diff --git a/src/client.cpp b/src/client.cpp index 5bb480fa..b3ec68f8 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -34,9 +34,15 @@ int main(int argc, char** argv) { Status status = stub->Probe(&context, request, &response); if (status.ok()) { - std::cout << response.found() << " " - << UCI::square(from_sq(Move(response.move()))) - << UCI::square(to_sq(Move(response.move()))) << " "; + std::cout << response.found() << " "; + if (Move(response.move()) == MOVE_NULL) { + std::cout << "Null-move "; + } else if (Move(response.move()) == MOVE_NONE) { + std::cout << "MOVE_NONE "; + } else { + std::cout << UCI::square(from_sq(Move(response.move()))) + << UCI::square(to_sq(Move(response.move()))) << " "; + } switch (response.bound()) { case HashProbeResponse::BOUND_NONE: std::cout << "?";