| How long can a double-float vector (of type (simple-array double-float 1))
?? You mean (simple-array double-float (*)) ? Yes, (simple-array double-float (*)) is the same as (simple-array double-float 1). | 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 Thank you for telling me this. Good to know it. 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 Just curious, is there any way to find out the amount of dynamic memory available at a given time from CMUCL? Best, -cph
