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
CosAnneal
Hi! Thank you for developing and maintaining this library!
I just noticed that the docstring of CosAnneal may be incorrect? Shouldn't it be
t̂ = restart ? mod(t - 1, period) : (t - 1)
instead of
t̂ = restart ? (t - 1) : mod(t - 1, period)
since the latter does not conform to the code whereas the former does?
The text was updated successfully, but these errors were encountered:
That's correct, thanks for catching the mistake! If you have time to file a PR, then that would be appreciated.
Sorry, something went wrong.
a445060
Successfully merging a pull request may close this issue.
Hi! Thank you for developing and maintaining this library!
I just noticed that the docstring of
CosAnneal
may be incorrect? Shouldn't it beinstead of
since the latter does not conform to the code whereas the former does?
The text was updated successfully, but these errors were encountered: