]> git.sesse.net Git - stockfish/blobdiff - src/misc.cpp
Remove the now redundant TT prefetch call from Position::do_move.
[stockfish] / src / misc.cpp
index 69bf0a372bc1d2c7683dc85d00af6d8fa30e537c..4d0628227683e9822c9e7d03ccc8af7905e37d03 100644 (file)
@@ -17,6 +17,7 @@
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
+#include <fstream>
 #include <iomanip>
 #include <iostream>
 #include <sstream>
@@ -51,8 +52,8 @@ const string engine_info(bool to_uci) {
   }
 
   ss << (Is64Bit ? " 64" : "")
-     << (HasPopCnt ? " SSE4.2" : "")
-     << (to_uci ? "\nid author ": " by ")
+     << (HasPext ? " BMI2" : (HasPopCnt ? " SSE4.2" : ""))
+     << (to_uci  ? "\nid author ": " by ")
      << "Tord Romstad, Marco Costalba and Joona Kiiski";
 
   return ss.str();