For those that like to toy with Ethereal...

Discussion of chess software programming and technical issues.

Moderators: hgm, Rebel, chrisw

Dann Corbit
Posts: 12540
Joined: Wed Mar 08, 2006 8:57 pm
Location: Redmond, WA USA

For those that like to toy with Ethereal...

Post by Dann Corbit »

You can get a very close approximation to the Stockfish null move pruning with this formula:

Code: Select all

        R = ( ( 13 + depth ) >> 2 ) + MIN(3, (eval - beta) / 185);
Taking ideas is not a vice, it is a virtue. We have another word for this. It is called learning.
But sharing ideas is an even greater virtue. We have another word for this. It is called teaching.
Dann Corbit
Posts: 12540
Joined: Wed Mar 08, 2006 8:57 pm
Location: Redmond, WA USA

Re: For those that like to toy with Ethereal...

Post by Dann Corbit »

E.g. you can experiment with it like this easily:

Code: Select all

#ifdef OLD_PRUNE
        R = 4 + depth / 6 + MIN(3, (eval - beta) / 200);
#else
        R = ( ( 13 + depth ) >> 2 ) + MIN(3, (eval - beta) / 185);
#endif
Taking ideas is not a vice, it is a virtue. We have another word for this. It is called learning.
But sharing ideas is an even greater virtue. We have another word for this. It is called teaching.
Dann Corbit
Posts: 12540
Joined: Wed Mar 08, 2006 8:57 pm
Location: Redmond, WA USA

Re: For those that like to toy with Ethereal...

Post by Dann Corbit »

In a test (every early) the Ethereal pruning is doing better than the Stockfish style.
Taking ideas is not a vice, it is a virtue. We have another word for this. It is called learning.
But sharing ideas is an even greater virtue. We have another word for this. It is called teaching.
mar
Posts: 2554
Joined: Fri Nov 26, 2010 2:00 pm
Location: Czech Republic
Full name: Martin Sedlak

Re: For those that like to toy with Ethereal...

Post by mar »

Hmm, could this be a hint that Fritz 17 is Ethereal? :D viewtopic.php?f=2&t=72170
Martin Sedlak
User avatar
MikeB
Posts: 4889
Joined: Thu Mar 09, 2006 6:34 am
Location: Pen Argyl, Pennsylvania

Re: For those that like to toy with Ethereal...

Post by MikeB »

Dann Corbit wrote: Wed Oct 30, 2019 11:40 pm In a test (every early) the Ethereal pruning is doing better than the Stockfish style.
Please define 'better' , can I assume you meant in position testing as opposed to head to head combat??
Image
AndrewGrant
Posts: 1753
Joined: Tue Apr 19, 2016 6:08 am
Location: U.S.A
Full name: Andrew Grant

Re: For those that like to toy with Ethereal...

Post by AndrewGrant »

MikeB wrote: Thu Oct 31, 2019 2:13 am
Dann Corbit wrote: Wed Oct 30, 2019 11:40 pm In a test (every early) the Ethereal pruning is doing better than the Stockfish style.
Please define 'better' , can I assume you meant in position testing as opposed to head to head combat??
http://chess.grantnet.us/viewTest/3607/

Going to figure things out :)
#WeAreAllDraude #JusticeForDraude #RememberDraude #LeptirBigUltra
"Those who can't do, clone instead" - Eduard ( A real life friend, not this forum's Eduard )
Dann Corbit
Posts: 12540
Joined: Wed Mar 08, 2006 8:57 pm
Location: Redmond, WA USA

Re: For those that like to toy with Ethereal...

Post by Dann Corbit »

MikeB wrote: Thu Oct 31, 2019 2:13 am
Dann Corbit wrote: Wed Oct 30, 2019 11:40 pm In a test (every early) the Ethereal pruning is doing better than the Stockfish style.
Please define 'better' , can I assume you meant in position testing as opposed to head to head combat??
I have a match running. It's set for 100K games, but I won't let it go that far.
When I left, SF pruning was ever so slightly ahead
Taking ideas is not a vice, it is a virtue. We have another word for this. It is called learning.
But sharing ideas is an even greater virtue. We have another word for this. It is called teaching.
Dann Corbit
Posts: 12540
Joined: Wed Mar 08, 2006 8:57 pm
Location: Redmond, WA USA

Re: For those that like to toy with Ethereal...

Post by Dann Corbit »

No difference in my test, but I discovered that Arena was logging like mad (I had a 550 MB arena.debug file) so I think the result cannot be trusted.

Code: Select all

   Program                          Elo    +   -   Games   Score   Av.Op.  Draws
 1 Ethereal-stopr                 : 3333   11  11  1475    50.1 %   3333   58.6 %
 2 Ethereal-ethpr                 : 3333   11  11  1475    49.9 %   3333   58.6 %
 
Taking ideas is not a vice, it is a virtue. We have another word for this. It is called learning.
But sharing ideas is an even greater virtue. We have another word for this. It is called teaching.
AndrewGrant
Posts: 1753
Joined: Tue Apr 19, 2016 6:08 am
Location: U.S.A
Full name: Andrew Grant

Re: For those that like to toy with Ethereal...

Post by AndrewGrant »

Dann Corbit wrote: Thu Oct 31, 2019 7:55 pm No difference in my test, but I discovered that Arena was logging like mad (I had a 550 MB arena.debug file) so I think the result cannot be trusted.

Code: Select all

   Program                          Elo    +   -   Games   Score   Av.Op.  Draws
 1 Ethereal-stopr                 : 3333   11  11  1475    50.1 %   3333   58.6 %
 2 Ethereal-ethpr                 : 3333   11  11  1475    49.9 %   3333   58.6 %
 
NMPFormula vs master DIFF

ELO | 0.62 +- 1.98 (95%)
SPRT | 10.0+0.1s Threads=1 Hash=8MB
LLR | -2.96 (-2.94, 2.94) [0.00, 5.00]
Games | N: 46370 W: 9180 L: 9097 D: 28093
Not bad, but Ill stick with current master.
#WeAreAllDraude #JusticeForDraude #RememberDraude #LeptirBigUltra
"Those who can't do, clone instead" - Eduard ( A real life friend, not this forum's Eduard )
AndrewGrant
Posts: 1753
Joined: Tue Apr 19, 2016 6:08 am
Location: U.S.A
Full name: Andrew Grant

Re: For those that like to toy with Ethereal...

Post by AndrewGrant »

AndrewGrant wrote: Thu Oct 31, 2019 10:45 pm
Dann Corbit wrote: Thu Oct 31, 2019 7:55 pm No difference in my test, but I discovered that Arena was logging like mad (I had a 550 MB arena.debug file) so I think the result cannot be trusted.

Code: Select all

   Program                          Elo    +   -   Games   Score   Av.Op.  Draws
 1 Ethereal-stopr                 : 3333   11  11  1475    50.1 %   3333   58.6 %
 2 Ethereal-ethpr                 : 3333   11  11  1475    49.9 %   3333   58.6 %
 

Code: Select all

NMPFormula vs master DIFF

ELO   | 0.62 +- 1.98 (95%)
SPRT  | 10.0+0.1s Threads=1 Hash=8MB
LLR   | -2.96 (-2.94, 2.94) [0.00, 5.00]
Games | N: 46370 W: 9180 L: 9097 D: 28093
Not bad, but Ill stick with current master.
#WeAreAllDraude #JusticeForDraude #RememberDraude #LeptirBigUltra
"Those who can't do, clone instead" - Eduard ( A real life friend, not this forum's Eduard )