fix bug in getting "rest" of an integer-set

This commit is contained in:
Stephen Chang 2013-02-20 17:50:02 -05:00
parent 5fcc96e41a
commit bd1141c670

View File

@ -74,7 +74,7 @@
(make-integer-set
(if (= low hi)
(cdr contents)
(cons (cons (+ 1 low) hi) contents))))])
(cons (cons (+ 1 low) hi) (cdr contents)))))])
;; well-formed-set? : X -> bool
(define (well-formed-set? x)