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
The symptom: This should fail, the indices are out of bounds:
> heine:~/programs/chibi-scheme> chibi-scheme > (import (srfi 231)) > (define A (make-specialized-array (make-interval '#(4 4)) generic-storage-class #t #t)) > (define B (array-extract A (make-interval '#(2 2)))) > (array-ref B 2 2) #t
I think something is a problem with specialized-array-share or %make-specialized-array, but I don't know where, precisely.
specialized-array-share
%make-specialized-array
I just sent a pull request to fix this in the sample implementation and test suite.
The text was updated successfully, but these errors were encountered:
For that matter, this should fail, too:
> heine:~> chibi-scheme > (import (srfi 231)) > (define A (make-specialized-array (make-interval '#(4 4)) generic-storage-class #t #t)) > (array-ref A 0 10) #t
Sorry, something went wrong.
No branches or pull requests
The symptom: This should fail, the indices are out of bounds:
I think something is a problem with
specialized-array-share
or%make-specialized-array
, but I don't know where, precisely.I just sent a pull request to fix this in the sample implementation and test suite.
The text was updated successfully, but these errors were encountered: