Raid

Discussion about chess-playing software (engines, hosts, opening books, platforms, etc...)
User avatar
OrgZ
Posts: 930
Joined: Thu Feb 16, 2023 2:15 pm

Re: Raid

Post by OrgZ » Fri Sep 29, 2023 7:21 pm

You are welcome friends ☺️

ChessLegend1990
Posts: 26
Joined: Fri Aug 04, 2023 8:10 am
Real Name: Japhet Bulaga
Contact:

Re: Raid

Post by ChessLegend1990 » Fri Sep 29, 2023 9:05 pm

🔥👍

User avatar
OrgZ
Posts: 930
Joined: Thu Feb 16, 2023 2:15 pm

Re: Raid

Post by OrgZ » Sat Sep 30, 2023 5:42 am

ChessLegend1990 wrote:
Fri Sep 29, 2023 9:05 pm
🔥👍
👍

Martin_1969
Posts: 16
Joined: Mon Jul 03, 2023 6:53 am

Re: Raid

Post by Martin_1969 » Sat Sep 30, 2023 7:11 am

+1

MadMax777
Posts: 15
Joined: Fri Jul 12, 2013 12:17 pm

Re: Raid

Post by MadMax777 » Sat Sep 30, 2023 11:20 am

Martin_1969 wrote:
Sat Sep 30, 2023 7:11 am
+1
+1

Ding-Bat
Posts: 88
Joined: Sat Jun 18, 2022 6:52 am

Re: Raid

Post by Ding-Bat » Sat Sep 30, 2023 11:48 am

Great work thanks

User avatar
OrgZ
Posts: 930
Joined: Thu Feb 16, 2023 2:15 pm

Re: Raid

Post by OrgZ » Sat Sep 30, 2023 1:14 pm

you are all welcome and Tnx too

User avatar
OrgZ
Posts: 930
Joined: Thu Feb 16, 2023 2:15 pm

Re: Raid

Post by OrgZ » Mon Oct 16, 2023 7:58 pm

Update Raid v2.78i_X
https://pixeldrain.com/u/VimcqiPb

Enjoy ;)

Homayoun
Posts: 1443
Joined: Tue Mar 21, 2023 4:57 pm
Real Name: Homayoun

Re: Raid

Post by Homayoun » Mon Oct 16, 2023 8:27 pm

OrgZ wrote:
Mon Oct 16, 2023 7:58 pm
Update Raid v2.78i_X
https://pixeldrain.com/u/VimcqiPb

Enjoy ;)
Thanks, great work.

Eduard Nemeth
Posts: 632
Joined: Thu Jun 10, 2010 12:50 am

Re: Raid

Post by Eduard Nemeth » Tue Oct 17, 2023 5:52 am

Sad, sorry! :( :|
I wanted to see what's new in Raid and I can't find anything. Only one code in the search was not taken from "Stockfish dev by Stefan Geschwentner" but the old line was kept. I don't know why I should use Raid? The author should (this is my opinion) tell people that Raid = Stockfish dev, and that the only thing implemented is the Polyglot book and the Sugar AI learning file. And this is not the author's own work, but copy & paste from SugaR AI. Compare yourself, I have attached both search.cpp files:

https://pixeldrain.com/u/x2uESANj

Raid v2.78i_X is 99,999% identical in search to Stockfish dev, Author: Stefan Geschwentner Date: Sun Oct 8. The only difference is in Step 20 (search.cpp) where RAID prefers an older Stockfish dev. entry, see at the bottom.

STOCKFISH DEV:

Author: Stefan Geschwentner
Date: Sun Oct 8 07:46:26 2023 +0200
Timestamp: 1696743986

Simplify collection of bad moves for history updates.

Search.cpp: Changes in Step 20 changed (by S. Gschwentner).

SF Gschwentner:

// If the move is worse than some previously searched move, remember it, to update its stats later
if (move != bestMove && moveCount <= 32)
{
if (capture)
capturesSearched[captureCount++] = move;

else
quietsSearched[quietCount++] = move;
}

Raid v2.78i_X:

// If the move is worse than some previously searched move, remember it, to update its stats later
if (move != bestMove)
{
if (capture && captureCount < 32)
capturesSearched[captureCount++] = move;

else if (!capture && quietCount < 64)
quietsSearched[quietCount++] = move;
}


Stockfish dev. previous versions, identical with Raid Raid v2.78i_X:

// If the move is worse than some previously searched move, remember it, to update its stats later
- if (move != bestMove)
+ if (move != bestMove && moveCount <= 32)
{
- if (capture && captureCount < 32)
if (capture)
capturesSearched[captureCount++] = move;

- else if (!capture && quietCount < 64)
+ else
quietsSearched[quietCount++] = move;
Peace be with you!

Post Reply