[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

weird math



According to my reading of CLtL2 (292-293), this should not happen:
? (= 1.4 (/ 7 5))
NIL

Especially since:
? (= 1.4 (coerce (/ 7 5) 'float))
T

This isn't a general bug because:
? (= 1.5 (/ 3 2))
T

This is the kind of bug that can shake your faith in the truth and
purity of mathematics.

I'm using MCL 2.0p2

Steve