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
This code has no effect because for is lazy and its result is not being used here. Without digging into the math I can't tell whether it is a bug.
for
If it indeed is a bug I would suggest replacing the for with
(dotimes [i c] (let [j (int i)] (aset s-adzigr j (/ (aget s-adzigx (inc j)) (aget s-adzigx j)))))
(Incidentally, the Integer type hint also has no effect so I removed that.)
Integer
If this is not a bug the for can just be removed as dead code.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This code has no effect because
for
is lazy and its result is not being used here. Without digging into the math I can't tell whether it is a bug.If it indeed is a bug I would suggest replacing the
for
with(Incidentally, the
Integer
type hint also has no effect so I removed that.)If this is not a bug the
for
can just be removed as dead code.The text was updated successfully, but these errors were encountered: