



if x < -0.0003019673949516488rm if -0.0003019673949516488 < x rm Original test:
(lambda ((x default))
#:name "Kahan's exp quotient"
(/ (- (exp x) 1) x)
#:target
(if (and (< x 1) (> x -1)) (/ (- (exp x) 1) (log (exp x))) (/ (- (exp x) 1) x)))