* Elo gain and competition results: With this release, version 5 of the NNUE neural net architecture has been introduced, and the training data has been extended to include Fischer random chess (FRC) positions. As a result, Elo gains are largest for FRC, reaching up to 50 Elo for doubly randomized FRC (DFRC). More importantly, also for standard chess this release progressed and will win two times more game pairs than it loses against Stockfish 15. * New evaluation: This release also introduces a new convention for the evaluation that is reported by search. An evaluation of +1 is now no longer tied to the value of one pawn, but to the likelihood of winning the game. With a +1 evaluation, Stockfish has now a 50% chance of winning the game against an equally strong opponent. This convention scales down evaluations a bit compared to Stockfish 15 and allows for consistent evaluations in the future. - Refresh: * date.patch * stockfish-remove-net.patch - Remove nn-6877cd24400e.nnue - Add nn-ad9b42354671.nnue OBS-URL: https://build.opensuse.org/package/show/games/stockfish?expand=0&rev=29
19 lines
687 B
Diff
19 lines
687 B
Diff
Index: Stockfish-sf_15.1/src/misc.cpp
|
|
===================================================================
|
|
--- Stockfish-sf_15.1.orig/src/misc.cpp
|
|
+++ Stockfish-sf_15.1/src/misc.cpp
|
|
@@ -156,13 +156,6 @@ string engine_info(bool to_uci) {
|
|
ss << "-";
|
|
#ifdef GIT_DATE
|
|
ss << GIT_DATE;
|
|
- #else
|
|
- const string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
|
|
- string month, day, year;
|
|
- stringstream date(__DATE__); // From compiler, format is "Sep 21 2008"
|
|
-
|
|
- date >> month >> day >> year;
|
|
- ss << year << setw(2) << setfill('0') << (1 + months.find(month) / 4) << setw(2) << setfill('0') << day;
|
|
#endif
|
|
|
|
ss << "-";
|