Here's a super simple benchmark that we aren't able to prove unsamplable: ``` (define (f) (log (+ (exp 1000000000000000000) 0))) (explain f) ``` The `(+ _ 0)` operation is necessary; I think it avoids an optimizing rewrite.
Here's a super simple benchmark that we aren't able to prove unsamplable:
The
(+ _ 0)operation is necessary; I think it avoids an optimizing rewrite.