Skip to content
Snippets Groups Projects
Commit efc69947 authored by Gary Palter's avatar Gary Palter
Browse files

Fix issue #4 by not creating arrays whose rank is higher than array-rank-limit

parent e5677433
No related branches found
No related tags found
No related merge requests found
......@@ -268,7 +268,7 @@
(defparameter *array-dimensions*
(loop
for i from 0 to 8 collect
for i from 0 below (min array-rank-limit 8) collect
(loop for j from 1 to i collect 2)))
(defparameter *default-array-target* (make-array '(300)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment