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
I think, if LMR>0, research should be if score > alpha without score < beta. Or I do not understand how it works :-).
score := -e.alphaBeta(depthLeft-1-LMR, searchHeight+1, -alpha-1, -alpha) if score > alpha && (LMR>0||score < beta) { ... }
zahak/search/search.go
Lines 745 to 751 in 72ff806
The text was updated successfully, but these errors were encountered:
Yeah, I doubt the beta will change anything really... it might hurt too. Will check it :) Thanks for the report :)
beta
Sorry, something went wrong.
No branches or pull requests
I think, if LMR>0, research should be if score > alpha without score < beta. Or I do not understand how it works :-).
score := -e.alphaBeta(depthLeft-1-LMR, searchHeight+1, -alpha-1, -alpha)
if score > alpha && (LMR>0||score < beta) {
...
}
zahak/search/search.go
Lines 745 to 751 in 72ff806
The text was updated successfully, but these errors were encountered: