We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如下提交引入:
SHA-1: b56990d
原来是在 Position::set() 中 th->us = sideToMove; 现在转移到 position() 函数中,以解决 moves 执行指令后再执行 go 卡住的问题。
void position(Position *pos, istringstream &is)
添加:
Threads.main()->us = pos->sideToMove;
导致。
The text was updated successfully, but these errors were encountered:
uci: 针对 Issue #80 添加代码注释
6d90841
void position(Position *pos, istringstream &is) 添加一行 TODO 注释 // TODO: Stockfish does not have this Threads.main()->us = pos->sideToMove;
3ece8b3
No branches or pull requests
如下提交引入:
SHA-1: b56990d
原来是在 Position::set() 中
th->us = sideToMove;
现在转移到 position() 函数中,以解决 moves 执行指令后再执行 go 卡住的问题。
添加:
导致。
The text was updated successfully, but these errors were encountered: