



if x < -8.102966659834604e-08rm if -8.102966659834604e-08 < x 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)))