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
Hi
there are a couple of places in CL-RANDIST where LOOP is used is a "short" form.
(loop for i integer = ...)
This form somehow confuses LW (I believe because INTEGER is not valid in the short form). The solution is to add OF-TYPE.
(loop for i of-type integer = ...)
I found the offending forms in binomial.lisp and poisson.lisp.
All the best
Marco
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi
there are a couple of places in CL-RANDIST where LOOP is used is a "short" form.
(loop for i integer = ...)
This form somehow confuses LW (I believe because INTEGER is not valid in the short form). The solution is to add OF-TYPE.
(loop for i of-type integer = ...)
I found the offending forms in binomial.lisp and poisson.lisp.
All the best
Marco
The text was updated successfully, but these errors were encountered: