(FPCore (x y) :precision binary64 (- 1.0 (/ (* (- 1.0 x) y) (+ y 1.0))))
(FPCore (x y)
:precision binary64
(let* ((t_0
(-
(+ (/ 1.0 y) (+ x (/ x (pow y 2.0))))
(+ (/ x y) (cbrt (pow y -6.0))))))
(if (<= y -7.6e+14)
t_0
(if (<= y 260000.0)
(- (+ 1.0 (/ (* y x) (+ y 1.0))) (/ y (+ y 1.0)))
t_0))))double code(double x, double y) {
return 1.0 - (((1.0 - x) * y) / (y + 1.0));
}
double code(double x, double y) {
double t_0 = ((1.0 / y) + (x + (x / pow(y, 2.0)))) - ((x / y) + cbrt(pow(y, -6.0)));
double tmp;
if (y <= -7.6e+14) {
tmp = t_0;
} else if (y <= 260000.0) {
tmp = (1.0 + ((y * x) / (y + 1.0))) - (y / (y + 1.0));
} else {
tmp = t_0;
}
return tmp;
}
public static double code(double x, double y) {
return 1.0 - (((1.0 - x) * y) / (y + 1.0));
}
public static double code(double x, double y) {
double t_0 = ((1.0 / y) + (x + (x / Math.pow(y, 2.0)))) - ((x / y) + Math.cbrt(Math.pow(y, -6.0)));
double tmp;
if (y <= -7.6e+14) {
tmp = t_0;
} else if (y <= 260000.0) {
tmp = (1.0 + ((y * x) / (y + 1.0))) - (y / (y + 1.0));
} else {
tmp = t_0;
}
return tmp;
}
function code(x, y) return Float64(1.0 - Float64(Float64(Float64(1.0 - x) * y) / Float64(y + 1.0))) end
function code(x, y) t_0 = Float64(Float64(Float64(1.0 / y) + Float64(x + Float64(x / (y ^ 2.0)))) - Float64(Float64(x / y) + cbrt((y ^ -6.0)))) tmp = 0.0 if (y <= -7.6e+14) tmp = t_0; elseif (y <= 260000.0) tmp = Float64(Float64(1.0 + Float64(Float64(y * x) / Float64(y + 1.0))) - Float64(y / Float64(y + 1.0))); else tmp = t_0; end return tmp end
code[x_, y_] := N[(1.0 - N[(N[(N[(1.0 - x), $MachinePrecision] * y), $MachinePrecision] / N[(y + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
code[x_, y_] := Block[{t$95$0 = N[(N[(N[(1.0 / y), $MachinePrecision] + N[(x + N[(x / N[Power[y, 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(x / y), $MachinePrecision] + N[Power[N[Power[y, -6.0], $MachinePrecision], 1/3], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[y, -7.6e+14], t$95$0, If[LessEqual[y, 260000.0], N[(N[(1.0 + N[(N[(y * x), $MachinePrecision] / N[(y + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(y / N[(y + 1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$0]]]
1 - \frac{\left(1 - x\right) \cdot y}{y + 1}
\begin{array}{l}
t_0 := \left(\frac{1}{y} + \left(x + \frac{x}{{y}^{2}}\right)\right) - \left(\frac{x}{y} + \sqrt[3]{{y}^{-6}}\right)\\
\mathbf{if}\;y \leq -7.6 \cdot 10^{+14}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 260000:\\
\;\;\;\;\left(1 + \frac{y \cdot x}{y + 1}\right) - \frac{y}{y + 1}\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}




Bits error versus x




Bits error versus y
Results
| Original | 22.6 |
|---|---|
| Target | 0.2 |
| Herbie | 0.2 |
if y < -7.6e14 or 2.6e5 < y Initial program 45.4
Simplified28.7
Taylor expanded in y around inf 0.0
Applied egg-rr0.0
if -7.6e14 < y < 2.6e5Initial program 0.3
Simplified0.3
Taylor expanded in x around 0 0.3
Final simplification0.2
herbie shell --seed 2022165
(FPCore (x y)
:name "Diagrams.Trail:splitAtParam from diagrams-lib-1.3.0.3, D"
:precision binary64
:herbie-target
(if (< y -3693.8482788297247) (- (/ 1.0 y) (- (/ x y) x)) (if (< y 6799310503.41891) (- 1.0 (/ (* (- 1.0 x) y) (+ y 1.0))) (- (/ 1.0 y) (- (/ x y) x))))
(- 1.0 (/ (* (- 1.0 x) y) (+ y 1.0))))