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
Reported by Ulrich Römer, Karlsruhe Institute of Technology:
I believe there is a bug in line 1308 (in subroutine ALTMOV). It states
for (var i = 1; i >= n; ++i)
whereas I believe it should be
for (var i = 1; i <= n; ++i)
for the loop to run more than one time. Please check this line (and please let me know).
The text was updated successfully, but these errors were encountered:
b0e6d76
Added unit test for Issue #1
47de43b
anders9ustafsson
No branches or pull requests
Reported by Ulrich Römer, Karlsruhe Institute of Technology:
I believe there is a bug in line 1308 (in subroutine ALTMOV).
It states
whereas I believe it should be
for the loop to run more than one time.
Please check this line (and please let me know).
The text was updated successfully, but these errors were encountered: