1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 16:53:09 +00:00

Update misc.cpp

change name to Stockfish+NNUE
and add 3 more authors
This commit is contained in:
FireFather 2020-07-08 16:18:42 +02:00 committed by nodchip
parent 821aaf3836
commit df9b2a87db

View file

@ -140,7 +140,7 @@ const string engine_info(bool to_uci) {
string month, day, year;
stringstream ss, date(__DATE__); // From compiler, format is "Sep 21 2008"
ss << "Stockfish " << Version << setfill('0');
ss << "Stockfish+NNUE " << Version << setfill('0');
if (Version.empty())
{
@ -151,7 +151,7 @@ const string engine_info(bool to_uci) {
ss << (Is64Bit ? " 64" : "")
<< (HasPext ? " BMI2" : (HasPopCnt ? " POPCNT" : ""))
<< (to_uci ? "\nid author ": " by ")
<< "T. Romstad, M. Costalba, J. Kiiski, G. Linscott";
<< "T. Romstad, M. Costalba, J. Kiiski, G. Linscott, H. Noda, Y. Nasu, M. Isozaki";
return ss.str();
}