On CCL, there is an error in running the combination test. I happened to notice this today, but someone posted to cll about it too:
http://paste.lisp.org/display/93531
http://groups.google.com/group/comp.lang.lisp/msg/a812d158fcfcce70
This is mostly a reminder to myself, but if anyone happens to be a CCL user and want to try to debug this, by all means, have at it.
Liam
OK, this should be fixed, but there are a couple things to note.
The first is that this is a bogus error from CCL; it should be an error from the assert in affi.lisp for defmethod initialize-instance :after ((affi affi) &key) failing because it is being passed a request for a zero-size array, in this call: (make-combination 4 0).
I have fixed it by permitting zero-size arrays in affi. This seems to have no deleterious effect on anything else in GSD or GSLL, so I'll keep it in there. I'm not sure what a zero size foreign array means though.
Liam
On Sun, Jan 17, 2010 at 3:00 PM, Liam Healy lhealy@common-lisp.net wrote:
On CCL, there is an error in running the combination test. I happened to notice this today, but someone posted to cll about it too:
http://paste.lisp.org/display/93531
http://groups.google.com/group/comp.lang.lisp/msg/a812d158fcfcce70
This is mostly a reminder to myself, but if anyone happens to be a CCL user and want to try to debug this, by all means, have at it.
Liam