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

Temporarily fix clang-format mismatch

closes https://github.com/official-stockfish/Stockfish/pull/5620

No functional change
This commit is contained in:
Disservin 2024-10-04 19:36:02 +02:00
parent e046c4ef0d
commit dce72913fe

View file

@ -431,6 +431,8 @@ void UCIEngine::benchmark(std::istream& args) {
if (threadBinding.empty()) if (threadBinding.empty())
threadBinding = "none"; threadBinding = "none";
// clang-format off
std::cerr << "===========================" std::cerr << "==========================="
<< "\nVersion : " << "\nVersion : "
<< engine_version_info() << engine_version_info()
@ -453,6 +455,8 @@ void UCIEngine::benchmark(std::istream& args) {
<< "\nTotal search time [s] : " << totalTime / 1000.0 << "\nTotal search time [s] : " << totalTime / 1000.0
<< "\nNodes/second : " << 1000 * nodes / totalTime << std::endl; << "\nNodes/second : " << 1000 * nodes / totalTime << std::endl;
// clang-format on
init_search_update_listeners(); init_search_update_listeners();
} }