Elo boost and time management

Discussion of chess software programming and technical issues.

Moderators: hgm, Rebel, chrisw

User avatar
xr_a_y
Posts: 1871
Joined: Sat Nov 25, 2017 2:28 pm
Location: France

Elo boost and time management

Post by xr_a_y »

How much can we expect from a "good" time management in term of elo ?
Let's say we have a very basic time management such as

Code: Select all

nextAvailableTimeForMove = remainingTime/remainingMove + smallMargin
and we introduce things like emergency time, "simple response"/easy move, game phase dependency, ...
Will it be really much better ? Does someone has some past experience on the subject ?
User avatar
hgm
Posts: 27790
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

Re: Elo boost and time management

Post by hgm »

Well, compared to this you could probably gain huge Elo (in classical TC), as what you write would forfeit unfailingly on the last move of the session.
odomobo
Posts: 96
Joined: Fri Jul 06, 2018 1:09 am
Location: Chicago, IL
Full name: Josh Odom

Re: Elo boost and time management

Post by odomobo »

I believe it should be:

Code: Select all

nextAvailableTimeForMove = remainingTime/remainingMove - smallMargin
User avatar
xr_a_y
Posts: 1871
Joined: Sat Nov 25, 2017 2:28 pm
Location: France

Re: Elo boost and time management

Post by xr_a_y »

eheh indeed !

Anyway, the question was between a simple and a complex time management.
User avatar
Laskos
Posts: 10948
Joined: Wed Jul 26, 2006 10:21 pm
Full name: Kai Laskos

Re: Elo boost and time management

Post by Laskos »

xr_a_y wrote: Thu Jan 24, 2019 5:44 pm How much can we expect from a "good" time management in term of elo ?
Let's say we have a very basic time management such as

Code: Select all

nextAvailableTimeForMove = remainingTime/remainingMove + smallMargin
and we introduce things like emergency time, "simple response"/easy move, game phase dependency, ...
Will it be really much better ? Does someone has some past experience on the subject ?
Here is something:
viewtopic.php?f=6&t=54534

Should be around 60 or a bit more Elo points between a good time management at
base time + small increment
versus
no time management, fixed time per move

for the same total time used.
elcabesa
Posts: 855
Joined: Sun May 23, 2010 1:32 pm

Re: Elo boost and time management

Post by elcabesa »

from my own test it give a very good Elo boost at very short time control, the longer the time countrol the smaller the elo gain I suppose.

but I haven't done a lot of testing with long time control, let's say 10 minutes/games or TCEC/CCCC time control
brianr
Posts: 536
Joined: Thu Mar 09, 2006 3:01 pm

Re: Elo boost and time management

Post by brianr »

Time management is somewhat deceptively complex. Including sophisticated pondering, "easy move [more for the benefit of humans observing]", and considering opponent time left make it a specialized and often overlooked niche within computer chess all by itself.
User avatar
xr_a_y
Posts: 1871
Joined: Sat Nov 25, 2017 2:28 pm
Location: France

Re: Elo boost and time management

Post by xr_a_y »

Thanks for those inputs.

A test is currently running with Minic, and it seems around 35elo is gained just from an emergency time implementation.
elcabesa
Posts: 855
Joined: Sun May 23, 2010 1:32 pm

Re: Elo boost and time management

Post by elcabesa »

xr_a_y wrote: Sat Jan 26, 2019 4:05 pm Thanks for those inputs.

A test is currently running with Minic, and it seems around 35elo is gained just from an emergency time implementation.
what are the game timing conditions?
User avatar
xr_a_y
Posts: 1871
Joined: Sat Nov 25, 2017 2:28 pm
Location: France

Re: Elo boost and time management

Post by xr_a_y »

40moves/20sec