mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-17 07:36:23 +08:00
Update misc.cpp
change name to Stockfish+NNUE and add 3 more authors
This commit is contained in:
@@ -140,7 +140,7 @@ const string engine_info(bool to_uci) {
|
|||||||
string month, day, year;
|
string month, day, year;
|
||||||
stringstream ss, date(__DATE__); // From compiler, format is "Sep 21 2008"
|
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())
|
if (Version.empty())
|
||||||
{
|
{
|
||||||
@@ -151,7 +151,7 @@ const string engine_info(bool to_uci) {
|
|||||||
ss << (Is64Bit ? " 64" : "")
|
ss << (Is64Bit ? " 64" : "")
|
||||||
<< (HasPext ? " BMI2" : (HasPopCnt ? " POPCNT" : ""))
|
<< (HasPext ? " BMI2" : (HasPopCnt ? " POPCNT" : ""))
|
||||||
<< (to_uci ? "\nid author ": " by ")
|
<< (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();
|
return ss.str();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user