I am using cmucl 19a and possibly don't understand the use of sort. It appears to eliminate most of the list when using the #'< operator, e.g. * (setf a '(15.61d0 15.13d0 14.47d0 14.47d0 13.75d0 11.93d0))
(15.61d0 15.13d0 14.47d0 14.47d0 13.75d0 11.93d0) * (sort a #'<) (11.93d0 13.75d0 14.47d0 14.47d0 15.13d0 15.61d0) * a (15.61d0) * Using #'> leaves the complete list. Have I misunderstood how to use sort or #'<? thanks Blake
