| How long can a double-float vector (of type (simple-array double-float 1))
?? You mean (simple-array double-float (*)) ? | be in CMUCL for Linux/x86? Is the maximum length hard-coded? Or it's | determined by the amount of memory available? There is the common-lisp constant ARRAY-DIMENSION-LIMIT which gives the hard coded value of any dimension. In CMUCL, the limit is more practically determined by the amount of dynamic memory available. I think there is 256 MB available by default. the startup option -dynamic-space-size can be used to increase the heap size if needed. Paul
