We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fairy-stockfish/variant-nnue-tools#19
In brief: At evaluate.cpp:1301
for (int j = 0; j < pos.connect_n(); j++) if (pos.pieces(Us) & (s - j * d)) c++; score += make_score(200, 200) * c / (pos.connect_n() - c) / (pos.connect_n() - c); //////// Failed to handle pos.connect_n()=c condition } } }
The text was updated successfully, but these errors were encountered:
Root cause is an optimization that didn't work right when variants inherit from each other. Fix is available at: https://github.com/fairy-stockfish/Fairy-Stockfish/pull/768/files#diff-af04472c8b7c849fcee248cf30695670e87f00f0b1f8763bd738823ee4f1258e
Temporary solution: Create a definition of Teeko that doesn't use any variant inheritance.
Sorry, something went wrong.
It's happening the same for variant: Symphony (NNUE datagen is crashing). I guess that's related, but if it isn't, I'll create a separate issue.
Try creating a definition that doesn't use inheritance, and if that fixes it, it's the same problem.
No branches or pull requests
fairy-stockfish/variant-nnue-tools#19
In brief:
At evaluate.cpp:1301
The text was updated successfully, but these errors were encountered: