Which engine makes only alfa-beta search?
Moderator: Ras
-
- Posts: 3660
- Joined: Wed Mar 08, 2006 8:15 pm
- Full name: Jouni Uski
Which engine makes only alfa-beta search?
No pruning or extensions at all. ShashChess has Full depth threads, but it's not same?
Jouni
-
- Posts: 5732
- Joined: Tue Feb 28, 2012 11:56 pm
Re: Which engine makes only alfa-beta search?
Some years ago I modified SF (or rather Cfish) to not do any pruning and extensions. Its nps went sky high and its Elo took a hit of 800 points.
-
- Posts: 5732
- Joined: Tue Feb 28, 2012 11:56 pm
Re: Which engine makes only alfa-beta search?
I think it is this Cripplefish branch:
https://github.com/syzygy1/Cfish/tree/cripplefish
However, it seems it still does singular and check extensions. I guess I only took out reductions and pruning. So it seems likely that the Elo loss of going to pure alpha-beta (plus qsearch) would be larger than 800.
I also did not take out aspiration search and null-window search, but those techniques do not involve pruning or extending.
https://github.com/syzygy1/Cfish/tree/cripplefish
However, it seems it still does singular and check extensions. I guess I only took out reductions and pruning. So it seems likely that the Elo loss of going to pure alpha-beta (plus qsearch) would be larger than 800.
I also did not take out aspiration search and null-window search, but those techniques do not involve pruning or extending.
-
- Posts: 10895
- Joined: Thu Mar 09, 2006 12:37 am
- Location: Tel-Aviv Israel
Re: Which engine makes only alfa-beta search?
I think the elo reduction is going to be smaller mainly because the evaluation today is better.syzygy wrote: ↑Sun Dec 03, 2023 4:53 pm I think it is this Cripplefish branch:
https://github.com/syzygy1/Cfish/tree/cripplefish
However, it seems it still does singular and check extensions. I guess I only took out reductions and pruning. So it seems likely that the Elo loss of going to pure alpha-beta (plus qsearch) would be larger than 800.
I also did not take out aspiration search and null-window search, but those techniques do not involve pruning or extending.
I am also not sure if singular extensions help when there are no reductions.
-
- Posts: 5732
- Joined: Tue Feb 28, 2012 11:56 pm
Re: Which engine makes only alfa-beta search?
They presuimably helped Deep Blue.