X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=gnushogi%2Fsearch.c;h=060d95880275ba635910c93fa1ffaaa8f6ea4a3e;hb=c1fb4a980af4b0828653d09fb16641f93b64eced;hp=c1d8fd99eb062b75ac93ff394ca43e71164fe118;hpb=fe6e10662390b3ad9642d6f5466e61c3a4faebc2;p=gnushogi.git diff --git a/gnushogi/search.c b/gnushogi/search.c index c1d8fd9..060d958 100644 --- a/gnushogi/search.c +++ b/gnushogi/search.c @@ -30,8 +30,6 @@ */ #include "gnushogi.h" -#include -#include short background = 0; static short DepthBeyond; @@ -409,7 +407,7 @@ SelectMove(short side, SelectMove_mode iop) if (rpt >= 3) { root->flags |= draw; - DRAW = CP[101]; /* Repetition */ + DRAW = DRAW_REPETITION; } else { @@ -421,7 +419,7 @@ SelectMove(short side, SelectMove_mode iop) if (GameCnt == MAXMOVES) { root->flags |= draw; - DRAW = CP[80]; /* Max Moves */ + DRAW = DRAW_MAXMOVES; } } @@ -528,8 +526,6 @@ search(short side, short best = -(SCORE_LIMIT + 3000); short bestwidth = 0; short mustcut; - static struct pollfd pollfds[1] = { /* [0] = */ { /* .fd = */ STDIN_FILENO, - /* .events = */ POLLIN } }; #ifdef NULLMOVE short PVsave; @@ -547,19 +543,6 @@ search(short side, { ElapsedTime(COMPUTE_MODE); - if(background) { - int cnt = poll(pollfds, sizeof(pollfds)/sizeof(pollfds[0]), 0); - if (cnt < 0) { - perror("polling standard input"); - ExitShogi(); - } - if (cnt) { /* if anything to read, or error occured */ - if (!flag.timeout) - flag.back = true; /* previous: flag.timeout = true; */ - flag.bothsides = false; - } - } - if (flag.back) { flag.back = false; @@ -928,7 +911,7 @@ search(short side, && !ChkFlag[ply]))) { node->flags |= (draw | exact); - DRAW = CP[58]; /* Draw */ + DRAW = DRAW_JUSTDRAW; node->score = ((side == computer) ? contempt : -contempt); }