-
- Downloads
Fix the folding of (+ x 0.0) which was being incorrectly transformed
into 'x, which fails for (+ -0.0 0.0) => 0.0. Although (+ x -0.0) can be transformed to 'x. Also (expt x 0.0) was being transformed into 1 but not (expt x -0.0), both are now transformed into 1. But note that the result still isn't coerced to the correct type.
Loading
Please register or sign in to comment