| View previous topic :: View next topic |
| Author |
Message |
Steven Atkinson
Joined: 13 Oct 2010 Posts: 446 Location: Australia
|
Post subject: Re: ScidVsPC/Mac Posted: Sat Mar 10, 2012 12:44 pm |
|
|
| hgm wrote: |
Indeed. A UCI engine will ALWAYS send "bestmove" to indicate it stopped searching. So "stop" is really "move now".
So you should keep track of how many "go" you have sent, and ignore "bestmove" untill there is only a single "go" pending, because that will be the "bestmove" corresponding to the last search you started.
Note that there are crummy engines, which cannot stand if you load a new position or start a search before they have sent "bestmove". These engines need the "syncstop" work-around of Polyglot, which makes it wait for "bestmove" after sending "stop" before continuing. |
Now it works but with an occasional game hang. So i'll commit this.
I tried doing a "wait after stop" (to discard a bestmove) before issuing new position/go - but it seemed to cause time issue.
But now, all i'm doing is discarding a single bestmove if stop is issued... but i guess i'll have to do a counter like you suggest.
Strelka 5 doesnt work, and Stockfish 2.1 loses on time in 10 sec+0 games.
Are short timed games (<= 10sec) normally done with or without ponder ?
And i notice engines send a ponder even if the option is disabled
| Code: |
Scid : setoption name Ponder value false
Scid : isready
Engine: readyok
Scid : position startpos
Scid : go wtime 10200 btime 10200 winc 0 binc 0
....
Engine: bestmove e2e4 ponder e7e5 |
BTW - for xboard, all i'm doing is issuing "easy" and "hard" but i suppose there is more to it than this ? |
|
| Back to top |
|
 |
|
| Subject |
Author |
Date/Time |
ScidVsPC/Mac |
Julien MARCEL |
Tue Mar 06, 2012 10:22 pm |
Re: ScidVsPC/Mac |
H.G.Muller |
Wed Mar 07, 2012 8:08 am |
Re: ScidVsPC/Mac |
Steven Atkinson |
Wed Mar 07, 2012 11:34 am |
Re: ScidVsPC/Mac |
Julien MARCEL |
Wed Mar 07, 2012 11:42 am |
Re: ScidVsPC/Mac |
Steven Atkinson |
Wed Mar 07, 2012 11:54 am |
Re: ScidVsPC/Mac |
Julien MARCEL |
Wed Mar 07, 2012 12:05 pm |
Re: ScidVsPC/Mac |
Julien MARCEL |
Wed Mar 07, 2012 12:15 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Wed Mar 07, 2012 1:17 pm |
Re: ScidVsPC/Mac |
Ignacio Garcia |
Wed Mar 07, 2012 5:22 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Wed Mar 07, 2012 11:42 am |
Re: ScidVsPC/Mac |
Julien MARCEL |
Wed Mar 07, 2012 11:48 am |
Re: ScidVsPC/Mac |
H.G.Muller |
Wed Mar 07, 2012 11:58 am |
Re: ScidVsPC/Mac |
Julien MARCEL |
Wed Mar 07, 2012 12:07 pm |
Re: ScidVsPC/Mac |
H.G.Muller |
Wed Mar 07, 2012 1:41 pm |
Re: ScidVsPC/Mac |
Julien MARCEL |
Wed Mar 07, 2012 2:01 pm |
Re: ScidVsPC/Mac |
H.G.Muller |
Wed Mar 07, 2012 2:25 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Wed Mar 07, 2012 8:20 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Fri Mar 09, 2012 12:39 pm |
Re: ScidVsPC/Mac |
H.G.Muller |
Fri Mar 09, 2012 12:49 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Sat Mar 10, 2012 6:36 am |
Re: ScidVsPC/Mac |
Julien MARCEL |
Sat Mar 10, 2012 6:41 am |
Re: ScidVsPC/Mac |
Julien MARCEL |
Sat Mar 10, 2012 7:10 am |
Re: ScidVsPC/Mac |
H.G.Muller |
Sat Mar 10, 2012 7:08 am |
Re: ScidVsPC/Mac |
Julien MARCEL |
Sat Mar 10, 2012 7:11 am |
Re: ScidVsPC/Mac |
Steven Atkinson |
Sat Mar 10, 2012 8:49 am |
Re: ScidVsPC/Mac |
H.G.Muller |
Sat Mar 10, 2012 9:03 am |
Re: ScidVsPC/Mac |
Steven Atkinson |
Sat Mar 10, 2012 12:44 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Sat Mar 10, 2012 1:01 pm |
Re: ScidVsPC/Mac |
Michel Van den Bergh |
Sat Mar 10, 2012 1:15 pm |
Re: ScidVsPC/Mac |
H.G.Muller |
Sat Mar 10, 2012 1:44 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Sun Mar 11, 2012 1:44 am |
Re: ScidVsPC/Mac |
Julien MARCEL |
Mon Mar 12, 2012 8:18 am |
Re: ScidVsPC/Mac |
H.G.Muller |
Mon Mar 12, 2012 9:16 am |
Re: ScidVsPC/Mac |
Steven Atkinson |
Mon Mar 12, 2012 11:31 am |
Re: ScidVsPC/Mac |
Steven Atkinson |
Mon Mar 12, 2012 11:51 am |
Re: ScidVsPC/Mac |
Julien MARCEL |
Mon Mar 12, 2012 11:55 am |
Re: ScidVsPC/Mac |
Steven Atkinson |
Mon Mar 12, 2012 1:08 pm |
Re: ScidVsPC/Mac |
H.G.Muller |
Tue Mar 13, 2012 11:07 am |
Re: ScidVsPC/Mac |
Steven Atkinson |
Tue Mar 13, 2012 11:17 am |
Re: ScidVsPC/Mac |
Julien MARCEL |
Tue Mar 13, 2012 11:25 am |
Re: ScidVsPC/Mac |
Steven Atkinson |
Tue Mar 13, 2012 7:54 pm |
Re: ScidVsPC/Mac |
Julien MARCEL |
Wed Mar 14, 2012 8:17 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Thu Mar 15, 2012 9:06 am |
Re: ScidVsPC/Mac |
Julien MARCEL |
Thu Mar 15, 2012 11:41 am |
Re: ScidVsPC/Mac |
Steven Atkinson |
Thu Mar 15, 2012 12:15 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Thu Mar 15, 2012 12:58 pm |
Re: ScidVsPC/Mac |
Julien MARCEL |
Sun Jan 06, 2013 12:33 am |
Re: ScidVsPC/Mac |
Steven Atkinson |
Mon Jan 07, 2013 11:38 am |
Re: ScidVsPC/Mac |
Julien MARCEL |
Mon Jan 07, 2013 3:25 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Mon Jan 07, 2013 9:32 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Mon Jan 07, 2013 9:48 pm |
Re: ScidVsPC/Mac |
Julien MARCEL |
Mon Jan 07, 2013 10:03 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Mon Jan 07, 2013 10:19 pm |
Re: ScidVsPC/Mac |
Julien MARCEL |
Mon Jan 07, 2013 10:37 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Mon Jan 07, 2013 10:40 pm |
Re: ScidVsPC/Mac |
Don Dailey |
Mon Jan 07, 2013 10:47 pm |
Re: ScidVsPC/Mac |
Julien MARCEL |
Mon Jan 07, 2013 10:51 pm |
Re: ScidVsPC/Mac |
Julien MARCEL |
Sun Apr 28, 2013 7:57 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Tue Apr 30, 2013 6:44 am |
Re: ScidVsPC/Mac |
H.G.Muller |
Thu Mar 15, 2012 3:02 pm |
Re: ScidVsPC/Mac |
Steven Atkinson |
Thu Mar 22, 2012 12:12 pm |
Re: ScidVsPC/Mac |
H.G.Muller |
Sun Jan 06, 2013 8:36 am |
Re: ScidVsPC/Mac |
Steven Atkinson |
Mon Jan 07, 2013 11:42 am |
Re: ScidVsPC/Mac |
Don Dailey |
Mon Jan 07, 2013 5:19 pm |
Re: ScidVsPC/Mac |
Julien MARCEL |
Tue Mar 13, 2012 11:19 am |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|