Skip to content
New issue

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

Loop in ALTMOV incorrectly processed #1

Closed
anders9ustafsson opened this issue Nov 17, 2014 · 0 comments
Closed

Loop in ALTMOV incorrectly processed #1

anders9ustafsson opened this issue Nov 17, 2014 · 0 comments
Assignees

Comments

@anders9ustafsson
Copy link
Contributor

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).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant