On-line engine blitz tourney April

Discussion of chess software programming and technical issues.

Moderators: hgm, Rebel, chrisw

User avatar
hgm
Posts: 27787
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

On-line engine blitz tourney April

Post by hgm »

The monthly on-line engine blitz tourney for April will take place on:

Saturday April 27, 3pm Boston time (21:00 Amsterdam time)

To connect:

winboard -zp -ics -icshost winboard.nl -icshelper timeseal -fcp ENGINE.exe -fd ENGINEFOLDER -autoKibitz

(for UCI engines, add -fUCI)
Joost Buijs
Posts: 1563
Joined: Thu Jul 16, 2009 10:47 am
Location: Almere, The Netherlands

Re: On-line engine blitz tourney April

Post by Joost Buijs »

I will be there, I informed Bart Goldhoorn too. The coming days I will try to add a few bugs, at least that is what usually happens when I start hacking the engine a few days before the tournament.

Now I sound like Henk! :shock:
Rémi Coulom
Posts: 438
Joined: Mon Apr 24, 2006 8:06 pm

Re: On-line engine blitz tourney April

Post by Rémi Coulom »

I plan to connect with my new engine. Is it possible to test the tournament configuration before the tournament?
User avatar
hgm
Posts: 27787
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

Re: On-line engine blitz tourney April

Post by hgm »

You can test the workings of the engine in individual games by logging in as guest, but for the actual tourney you will need a registered acount, or mamer would not allow you to join. (It wats to check if the rating is in range, and unregistered players have no rating.)

If you PM me an e-mail address and desired account name (letters only!), I will create an account. (Most of today I will be travelling, though, so I might not have an opportunity before tomorrow.) Then you can also play a few games to get a non-zero rating. This is important, because the McMahon pairing we use will make the pairigs for the entire tourney hugely dependent on the rating at the start.
JohnWoe
Posts: 491
Joined: Sat Mar 02, 2013 11:31 pm

Re: On-line engine blitz tourney April

Post by JohnWoe »

I will too. If this thing works. No gonna debug too much.
xboard -zp -ics -icshost winboard.nl -icshelper timeseal -fcp sapeli -fd "." -fUCI
I tried this. This just stalls.

timeseal
Timeseal (FICS/GICS) v1.0 - programmed by Henrik Gram.

Syntax: "timeseal server-address server-port [-p port#]"
Rémi Coulom
Posts: 438
Joined: Mon Apr 24, 2006 8:06 pm

Re: On-line engine blitz tourney April

Post by Rémi Coulom »

Thanks. I sent an email. I'll play some games before the tournament.
User avatar
hgm
Posts: 27787
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

Re: On-line engine blitz tourney April

Post by hgm »

That you use XBoard suggests you run under Linux.

Note that in Linux you cannot simply run binaries in the current directory by writig their filename; you have to prefix them with "./" . So if "sapeli" and "timeseal" are not globaly known commands (e.g. because you installed them in /usr/bin), you might have to give ./timeseal and ./sapeli as the -icshelper and -fcp arguments.

In case of problems, always test if thigs work directly from the command line, i.e. if you can connect through

./timeseal winboard.nl 5000

from a terminal window, through which you should be able to log on. Note that some ISP block port 5000
Modern Times
Posts: 3546
Joined: Thu Jun 07, 2012 11:02 pm

Re: On-line engine blitz tourney April

Post by Modern Times »

How do you change your profile to reject game requests with no time control increment, i.e. it has to be 1 sec or more ?
Maarten Claessens
Posts: 106
Joined: Mon May 12, 2014 10:08 am
Location: Near Nijmegen

Re: On-line engine blitz tourney April

Post by Maarten Claessens »

Modern Times wrote: Thu Apr 25, 2019 10:30 pm How do you change your profile to reject game requests with no time control increment, i.e. it has to be 1 sec or more ?
set formula inc >= 1
Nothing is unstable (Lawrence Krauss)
Modern Times
Posts: 3546
Joined: Thu Jun 07, 2012 11:02 pm

Re: On-line engine blitz tourney April

Post by Modern Times »

Maarten Claessens wrote: Fri Apr 26, 2019 8:03 am
set formula inc >= 1
Thanks.