What's the best tactical test suite for the modern erA?

Discussion of chess software programming and technical issues.

Moderator: Ras

User avatar
johnhamlen65
Posts: 31
Joined: Fri May 12, 2023 10:15 am
Location: Melton Mowbray, England
Full name: John Hamlen

What's the best tactical test suite for the modern erA?

Post by johnhamlen65 »

Dear lovely CCC community,

I'm currently working on a Tech 4 technology chess program to continue the lineage of these super-simple search monsters 50 years after Tech 2 competed in the 1st WCCC in 1974.
https://www.chessprogramming.org/Tech

Squirrel and I have been away from chess programming for a while: last code written in 1997, last completion in 2011, but one thing is clear is how easily modern engines on modern hardware make some of the hard test suites of yesteryear seem trivial!

Does anyone have and recommendations for a suite(s) of test positions which will test Tech 4's tactical ability i.e. very deep combinations which lead to material win or mate.

Many thanks in advance
John
Viz
Posts: 223
Joined: Tue Apr 09, 2024 6:24 am
Full name: Michael Chaly

Re: What's the best tactical test suite for the modern erA?

Post by Viz »

The best usage of test suites during development is to not use test suites at all.
Jouni
Posts: 3621
Joined: Wed Mar 08, 2006 8:15 pm
Full name: Jouni Uski

Re: What's the best tactical test suite for the modern erA?

Post by Jouni »

Try this https://www.arasanchess.org/arasan21.epd . Good engine solves 180 with 15 sec limit and 4 cores.
Jouni
gaard
Posts: 463
Joined: Mon Jun 07, 2010 3:13 am
Location: Holland, MI
Full name: Martin W

Re: What's the best tactical test suite for the modern erA?

Post by gaard »

Viz wrote: Mon Aug 05, 2024 6:35 pm The best usage of test suites during development is to not use test suites at all.
It seems counterintuitive that tactical test suites would not be useful for testing tactical ability. A few engines have tactical/mate finding modes that really do work. Not everyone is competing in the Elo arms race.
ImNotStockfish
Posts: 56
Joined: Tue Sep 14, 2021 12:29 am
Full name: .

Re: What's the best tactical test suite for the modern erA?

Post by ImNotStockfish »

Decent ones are Hard Talkchess 2020 (2021 revision), TTT1, TTT2, Arasan... You can combine them to get a better sample size but it will still be pretty small
Bad ones are ShashChess Hardpositions2022 :lol:
Viz
Posts: 223
Joined: Tue Apr 09, 2024 6:24 am
Full name: Michael Chaly

Re: What's the best tactical test suite for the modern erA?

Post by Viz »

gaard wrote: Mon Aug 05, 2024 7:53 pm
Viz wrote: Mon Aug 05, 2024 6:35 pm The best usage of test suites during development is to not use test suites at all.
It seems counterintuitive that tactical test suites would not be useful for testing tactical ability. A few engines have tactical/mate finding modes that really do work. Not everyone is competing in the Elo arms race.
If OP wasn't involved in chess programming for 27 years he probably would want to actually learn how to develop a strong engine first and only then maybe putting in some extra oomph with suites or whatever. Well, ofc if he wants to have 2000 elo engine which would solve testsuites he can try, but in general it's a dead end and not an interesting one.
shawn
Posts: 97
Joined: Fri Jun 28, 2024 9:24 am
Full name: Wallace Shawn

Re: What's the best tactical test suite for the modern erA?

Post by shawn »

Modern engine development relies on scientific testing, which is part of the reason why they are so strong. I would suggest you to read https://www.chessprogramming.org/SPRT to learn more about this methodology. Testing suits are almost completely obsolete for top engines.
User avatar
johnhamlen65
Posts: 31
Joined: Fri May 12, 2023 10:15 am
Location: Melton Mowbray, England
Full name: John Hamlen

Re: What's the best tactical test suite for the modern erA?

Post by johnhamlen65 »

Jouni wrote: Mon Aug 05, 2024 7:41 pm Try this https://www.arasanchess.org/arasan21.epd . Good engine solves 180 with 15 sec limit and 4 cores.
Thanks for the help Jouni!

I'll take a look at those tomorrow.

Cheers
John
shawn
Posts: 97
Joined: Fri Jun 28, 2024 9:24 am
Full name: Wallace Shawn

Re: What's the best tactical test suite for the modern erA?

Post by shawn »

gaard wrote: Mon Aug 05, 2024 7:53 pm
Viz wrote: Mon Aug 05, 2024 6:35 pm The best usage of test suites during development is to not use test suites at all.
It seems counterintuitive that tactical test suites would not be useful for testing tactical ability. A few engines have tactical/mate finding modes that really do work. Not everyone is competing in the Elo arms race.
https://github.com/Matthies/RubiChess/w ... uter-chess
User avatar
johnhamlen65
Posts: 31
Joined: Fri May 12, 2023 10:15 am
Location: Melton Mowbray, England
Full name: John Hamlen

Re: What's the best tactical test suite for the modern erA?

Post by johnhamlen65 »

shawn wrote: Tue Aug 06, 2024 12:59 am Modern engine development relies on scientific testing, which is part of the reason why they are so strong. I would suggest you to read https://www.chessprogramming.org/SPRT to learn more about this methodology. Testing suits are almost completely obsolete for top engines.
Thanks Shawn. Looks very interesting.

A scientific method for improving Elo. I'm sure Tech 4 could benefit from that! However, I believe testing suites are of more use for a technology program than a "standard" one. The only hope a Tech program has of defeating a top rated program is to find it's way to a position where there are tactics beyond its opponent's horizon.