Remove "64" and "POPCNT" information from Stockfish name

This information does not really help the typical user and also gets
included in the White/Black fields in the PGN header section.
This commit is contained in:
Peter Osterlund 2020-04-05 16:29:58 +02:00
parent 7100ec8a06
commit 29a864de05

View File

@ -142,9 +142,7 @@ const string engine_info(bool to_uci) {
ss << setw(2) << day << setw(2) << (1 + months.find(month) / 4) << year.substr(2); ss << setw(2) << day << setw(2) << (1 + months.find(month) / 4) << year.substr(2);
} }
ss << (Is64Bit ? " 64" : "") ss << (to_uci ? "\nid author ": " by ")
<< (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";
return ss.str(); return ss.str();