本文整理汇总了C++中Searcher::getInfo方法的典型用法代码示例。如果您正苦于以下问题:C++ Searcher::getInfo方法的具体用法?C++ Searcher::getInfo怎么用?C++ Searcher::getInfo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Searcher
的用法示例。
在下文中一共展示了Searcher::getInfo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: onUpdatePV
void UsiClient::onUpdatePV(const Searcher& searcher, const PV& pv, float elapsed, int depth, Score score) {
if (pv.size() == 0) {
LOG(warning) << "PV is empty.";
return;
}
auto& info = searcher.getInfo();
auto timeMs = static_cast<uint32_t>(elapsed * 1e3);
auto realDepth = depth / Searcher::Depth1Ply;
auto totalNodes = info.nodes + info.quiesNodes;
auto nps = static_cast<uint32_t>(totalNodes / elapsed);
auto hashfull = static_cast<int>(searcher_->ttUsageRates() * 1000);
const char* scoreKey;
int scoreValue;
if (score > -Score::mate() && score < Score::mate()) {
scoreKey = "cp";
scoreValue = score.raw() * 100.0 / material::Pawn;
} else {
scoreKey = "mate";
if (score >= 0) {
scoreValue = (Score::infinity() - score).raw();
} else {
scoreValue = -(Score::infinity() + score).raw();
}
}
OUT(info) << std::setw(2) << realDepth << ": "
<< std::setw(10) << (info.nodes + info.quiesNodes) << ": "
<< std::setw(7) << timeMs << ' '
<< pv.toString() << ": "
<< score;
if (!inPonder_) {
send("info",
"time", timeMs,
"depth", realDepth,
"nodes", totalNodes,
"nps", nps,
"currmove", pv.getMove(0).toStringSFEN(),
"score", scoreKey, scoreValue,
"pv", pv.toStringSFEN(),
"hashfull", hashfull);
}
}