



if x < -1.5194640071230868e-06if -1.5194640071230868e-06 < 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)))