diff options
-rw-r--r-- | randino.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/randino.cpp b/randino.cpp index 2b53402..2cc0c71 100644 --- a/randino.cpp +++ b/randino.cpp @@ -167,11 +167,12 @@ int main(void){ gettimeofday(&tv,NULL); cerr<<"seed="<<(1000000*tv.tv_sec+tv.tv_usec)<<endl; srand(1000000*tv.tv_sec+tv.tv_usec); - //srand(1430075262226814); + //srand(1430130052185291); getline(cin,line); if(line=="go"){ should_flip_board=false; - mv.neudir=-1; mv.from=0; mv.dir=4; + mv.neudir=-1; mv.from=1; mv.dir=3; + bd.move(mv.from,mv.dir); protocol_put_move(cout,mv); } else { if(line!="nogo")cerr<<"no0b "<<line<<" not in (go,nogo)"<<endl; |