WChess PV settings

Discussion of chess software programming and technical issues.

Moderators: hgm, Rebel, chrisw

jcgdijkstra
Posts: 19
Joined: Wed Jul 11, 2012 8:39 pm
Location: Deventer, The Netherlands

WChess PV settings

Post by jcgdijkstra »

Does the PV setting (0-3) in the old WChess DOS program influence the playing strength (i.e. move selection) at all or is it only used to show the best move analysis?
User avatar
Eelco de Groot
Posts: 4567
Joined: Sun Mar 12, 2006 2:40 am
Full name:   

Re: WChess PV settings

Post by Eelco de Groot »

Hello jcg,

I don't know Dave Kittinger's program, but from the sound of it this looks like a form of Multi PV. For an alpha beta program, rule of thumb says that about half of the time is spent in the PV, rest in exploring the other rootmoves. If you want two PVs the time to reach the same depth will increase therefore with 50%, 150% of the time it used before to reach the same depth. For three PVs it becomes roughly 200%. In a game, this will lower playing strength accordingly but you have more information on what is likely the second best move etc. and sometimes it will find a better move this way.
Debugging is twice as hard as writing the code in the first
place. Therefore, if you write the code as cleverly as possible, you
are, by definition, not smart enough to debug it.
-- Brian W. Kernighan
jcgdijkstra
Posts: 19
Joined: Wed Jul 11, 2012 8:39 pm
Location: Deventer, The Netherlands

Re: WChess PV settings

Post by jcgdijkstra »

Thanks Eelco :)