
(FPCore (x y z) :precision binary64 (+ x (/ y (- (* 1.1283791670955126 (exp z)) (* x y)))))
double code(double x, double y, double z) {
return x + (y / ((1.1283791670955126 * exp(z)) - (x * y)));
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = x + (y / ((1.1283791670955126d0 * exp(z)) - (x * y)))
end function
public static double code(double x, double y, double z) {
return x + (y / ((1.1283791670955126 * Math.exp(z)) - (x * y)));
}
def code(x, y, z): return x + (y / ((1.1283791670955126 * math.exp(z)) - (x * y)))
function code(x, y, z) return Float64(x + Float64(y / Float64(Float64(1.1283791670955126 * exp(z)) - Float64(x * y)))) end
function tmp = code(x, y, z) tmp = x + (y / ((1.1283791670955126 * exp(z)) - (x * y))); end
code[x_, y_, z_] := N[(x + N[(y / N[(N[(1.1283791670955126 * N[Exp[z], $MachinePrecision]), $MachinePrecision] - N[(x * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x + \frac{y}{1.1283791670955126 \cdot e^{z} - x \cdot y}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 10 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y z) :precision binary64 (+ x (/ y (- (* 1.1283791670955126 (exp z)) (* x y)))))
double code(double x, double y, double z) {
return x + (y / ((1.1283791670955126 * exp(z)) - (x * y)));
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = x + (y / ((1.1283791670955126d0 * exp(z)) - (x * y)))
end function
public static double code(double x, double y, double z) {
return x + (y / ((1.1283791670955126 * Math.exp(z)) - (x * y)));
}
def code(x, y, z): return x + (y / ((1.1283791670955126 * math.exp(z)) - (x * y)))
function code(x, y, z) return Float64(x + Float64(y / Float64(Float64(1.1283791670955126 * exp(z)) - Float64(x * y)))) end
function tmp = code(x, y, z) tmp = x + (y / ((1.1283791670955126 * exp(z)) - (x * y))); end
code[x_, y_, z_] := N[(x + N[(y / N[(N[(1.1283791670955126 * N[Exp[z], $MachinePrecision]), $MachinePrecision] - N[(x * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x + \frac{y}{1.1283791670955126 \cdot e^{z} - x \cdot y}
\end{array}
(FPCore (x y z) :precision binary64 (+ x (/ -1.0 (fma (exp z) (/ -1.1283791670955126 y) x))))
double code(double x, double y, double z) {
return x + (-1.0 / fma(exp(z), (-1.1283791670955126 / y), x));
}
function code(x, y, z) return Float64(x + Float64(-1.0 / fma(exp(z), Float64(-1.1283791670955126 / y), x))) end
code[x_, y_, z_] := N[(x + N[(-1.0 / N[(N[Exp[z], $MachinePrecision] * N[(-1.1283791670955126 / y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x + \frac{-1}{\mathsf{fma}\left(e^{z}, \frac{-1.1283791670955126}{y}, x\right)}
\end{array}
Initial program 94.9%
remove-double-neg94.9%
neg-mul-194.9%
associate-/l*94.9%
neg-mul-194.9%
associate-/r*94.9%
div-sub95.0%
metadata-eval95.0%
associate-/l*95.0%
*-commutative95.0%
neg-mul-195.0%
distribute-lft-neg-out95.0%
/-rgt-identity95.0%
div-sub95.0%
associate-/r*95.0%
neg-mul-195.0%
*-rgt-identity95.0%
times-frac95.0%
/-rgt-identity95.0%
*-commutative95.0%
associate-*r/99.9%
Simplified99.9%
Final simplification99.9%
(FPCore (x y z)
:precision binary64
(if (<= (exp z) 0.0)
(+ x (/ -1.0 x))
(if (<= (exp z) 1.0)
(+ x (/ y (- (* (exp z) 1.1283791670955126) (* x y))))
x)))
double code(double x, double y, double z) {
double tmp;
if (exp(z) <= 0.0) {
tmp = x + (-1.0 / x);
} else if (exp(z) <= 1.0) {
tmp = x + (y / ((exp(z) * 1.1283791670955126) - (x * y)));
} else {
tmp = x;
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (exp(z) <= 0.0d0) then
tmp = x + ((-1.0d0) / x)
else if (exp(z) <= 1.0d0) then
tmp = x + (y / ((exp(z) * 1.1283791670955126d0) - (x * y)))
else
tmp = x
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (Math.exp(z) <= 0.0) {
tmp = x + (-1.0 / x);
} else if (Math.exp(z) <= 1.0) {
tmp = x + (y / ((Math.exp(z) * 1.1283791670955126) - (x * y)));
} else {
tmp = x;
}
return tmp;
}
def code(x, y, z): tmp = 0 if math.exp(z) <= 0.0: tmp = x + (-1.0 / x) elif math.exp(z) <= 1.0: tmp = x + (y / ((math.exp(z) * 1.1283791670955126) - (x * y))) else: tmp = x return tmp
function code(x, y, z) tmp = 0.0 if (exp(z) <= 0.0) tmp = Float64(x + Float64(-1.0 / x)); elseif (exp(z) <= 1.0) tmp = Float64(x + Float64(y / Float64(Float64(exp(z) * 1.1283791670955126) - Float64(x * y)))); else tmp = x; end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (exp(z) <= 0.0) tmp = x + (-1.0 / x); elseif (exp(z) <= 1.0) tmp = x + (y / ((exp(z) * 1.1283791670955126) - (x * y))); else tmp = x; end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[N[Exp[z], $MachinePrecision], 0.0], N[(x + N[(-1.0 / x), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[Exp[z], $MachinePrecision], 1.0], N[(x + N[(y / N[(N[(N[Exp[z], $MachinePrecision] * 1.1283791670955126), $MachinePrecision] - N[(x * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], x]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;e^{z} \leq 0:\\
\;\;\;\;x + \frac{-1}{x}\\
\mathbf{elif}\;e^{z} \leq 1:\\
\;\;\;\;x + \frac{y}{e^{z} \cdot 1.1283791670955126 - x \cdot y}\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\end{array}
if (exp.f64 z) < 0.0Initial program 89.4%
remove-double-neg89.4%
neg-mul-189.4%
associate-/l*89.4%
neg-mul-189.4%
associate-/r*89.4%
div-sub89.7%
metadata-eval89.7%
associate-/l*89.7%
*-commutative89.7%
neg-mul-189.7%
distribute-lft-neg-out89.7%
/-rgt-identity89.7%
div-sub89.5%
associate-/r*89.5%
neg-mul-189.5%
*-rgt-identity89.5%
times-frac89.5%
/-rgt-identity89.5%
*-commutative89.5%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in y around inf 100.0%
if 0.0 < (exp.f64 z) < 1Initial program 99.8%
if 1 < (exp.f64 z) Initial program 92.6%
remove-double-neg92.6%
neg-mul-192.6%
associate-/l*92.6%
neg-mul-192.6%
associate-/r*92.6%
div-sub92.6%
metadata-eval92.6%
associate-/l*92.6%
*-commutative92.6%
neg-mul-192.6%
distribute-lft-neg-out92.6%
/-rgt-identity92.6%
div-sub92.6%
associate-/r*92.6%
neg-mul-192.6%
*-rgt-identity92.6%
times-frac92.6%
/-rgt-identity92.6%
*-commutative92.6%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in z around 0 60.5%
associate-*r/60.5%
metadata-eval60.5%
Simplified60.5%
Taylor expanded in x around 0 47.3%
*-commutative47.3%
Simplified47.3%
Taylor expanded in x around inf 100.0%
Final simplification99.9%
(FPCore (x y z)
:precision binary64
(if (<= (exp z) 0.0)
(+ x (/ -1.0 x))
(if (<= (exp z) 1.0)
(+ x (/ y (- (+ 1.1283791670955126 (* z 1.1283791670955126)) (* x y))))
x)))
double code(double x, double y, double z) {
double tmp;
if (exp(z) <= 0.0) {
tmp = x + (-1.0 / x);
} else if (exp(z) <= 1.0) {
tmp = x + (y / ((1.1283791670955126 + (z * 1.1283791670955126)) - (x * y)));
} else {
tmp = x;
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (exp(z) <= 0.0d0) then
tmp = x + ((-1.0d0) / x)
else if (exp(z) <= 1.0d0) then
tmp = x + (y / ((1.1283791670955126d0 + (z * 1.1283791670955126d0)) - (x * y)))
else
tmp = x
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (Math.exp(z) <= 0.0) {
tmp = x + (-1.0 / x);
} else if (Math.exp(z) <= 1.0) {
tmp = x + (y / ((1.1283791670955126 + (z * 1.1283791670955126)) - (x * y)));
} else {
tmp = x;
}
return tmp;
}
def code(x, y, z): tmp = 0 if math.exp(z) <= 0.0: tmp = x + (-1.0 / x) elif math.exp(z) <= 1.0: tmp = x + (y / ((1.1283791670955126 + (z * 1.1283791670955126)) - (x * y))) else: tmp = x return tmp
function code(x, y, z) tmp = 0.0 if (exp(z) <= 0.0) tmp = Float64(x + Float64(-1.0 / x)); elseif (exp(z) <= 1.0) tmp = Float64(x + Float64(y / Float64(Float64(1.1283791670955126 + Float64(z * 1.1283791670955126)) - Float64(x * y)))); else tmp = x; end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (exp(z) <= 0.0) tmp = x + (-1.0 / x); elseif (exp(z) <= 1.0) tmp = x + (y / ((1.1283791670955126 + (z * 1.1283791670955126)) - (x * y))); else tmp = x; end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[N[Exp[z], $MachinePrecision], 0.0], N[(x + N[(-1.0 / x), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[Exp[z], $MachinePrecision], 1.0], N[(x + N[(y / N[(N[(1.1283791670955126 + N[(z * 1.1283791670955126), $MachinePrecision]), $MachinePrecision] - N[(x * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], x]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;e^{z} \leq 0:\\
\;\;\;\;x + \frac{-1}{x}\\
\mathbf{elif}\;e^{z} \leq 1:\\
\;\;\;\;x + \frac{y}{\left(1.1283791670955126 + z \cdot 1.1283791670955126\right) - x \cdot y}\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\end{array}
if (exp.f64 z) < 0.0Initial program 89.4%
remove-double-neg89.4%
neg-mul-189.4%
associate-/l*89.4%
neg-mul-189.4%
associate-/r*89.4%
div-sub89.7%
metadata-eval89.7%
associate-/l*89.7%
*-commutative89.7%
neg-mul-189.7%
distribute-lft-neg-out89.7%
/-rgt-identity89.7%
div-sub89.5%
associate-/r*89.5%
neg-mul-189.5%
*-rgt-identity89.5%
times-frac89.5%
/-rgt-identity89.5%
*-commutative89.5%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in y around inf 100.0%
if 0.0 < (exp.f64 z) < 1Initial program 99.8%
Taylor expanded in z around 0 99.1%
if 1 < (exp.f64 z) Initial program 92.6%
remove-double-neg92.6%
neg-mul-192.6%
associate-/l*92.6%
neg-mul-192.6%
associate-/r*92.6%
div-sub92.6%
metadata-eval92.6%
associate-/l*92.6%
*-commutative92.6%
neg-mul-192.6%
distribute-lft-neg-out92.6%
/-rgt-identity92.6%
div-sub92.6%
associate-/r*92.6%
neg-mul-192.6%
*-rgt-identity92.6%
times-frac92.6%
/-rgt-identity92.6%
*-commutative92.6%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in z around 0 60.5%
associate-*r/60.5%
metadata-eval60.5%
Simplified60.5%
Taylor expanded in x around 0 47.3%
*-commutative47.3%
Simplified47.3%
Taylor expanded in x around inf 100.0%
Final simplification99.6%
(FPCore (x y z) :precision binary64 (+ x (/ -1.0 (fma -1.1283791670955126 (/ (exp z) y) x))))
double code(double x, double y, double z) {
return x + (-1.0 / fma(-1.1283791670955126, (exp(z) / y), x));
}
function code(x, y, z) return Float64(x + Float64(-1.0 / fma(-1.1283791670955126, Float64(exp(z) / y), x))) end
code[x_, y_, z_] := N[(x + N[(-1.0 / N[(-1.1283791670955126 * N[(N[Exp[z], $MachinePrecision] / y), $MachinePrecision] + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x + \frac{-1}{\mathsf{fma}\left(-1.1283791670955126, \frac{e^{z}}{y}, x\right)}
\end{array}
Initial program 94.9%
remove-double-neg94.9%
neg-mul-194.9%
associate-/l*94.9%
neg-mul-194.9%
associate-/r*94.9%
div-sub95.0%
metadata-eval95.0%
associate-/l*95.0%
*-commutative95.0%
neg-mul-195.0%
distribute-lft-neg-out95.0%
/-rgt-identity95.0%
div-sub95.0%
associate-/r*95.0%
neg-mul-195.0%
*-rgt-identity95.0%
times-frac95.0%
/-rgt-identity95.0%
*-commutative95.0%
associate-*r/99.9%
Simplified99.9%
Taylor expanded in z around inf 99.9%
+-commutative99.9%
fma-def99.9%
Simplified99.9%
Final simplification99.9%
(FPCore (x y z)
:precision binary64
(let* ((t_0 (+ x (/ -1.0 x))) (t_1 (+ x (* y 0.8862269254527579))))
(if (<= z -6.5)
t_0
(if (<= z 6.5e-237)
t_1
(if (<= z 5.5e-113) t_0 (if (<= z 5.6e-27) t_1 x))))))
double code(double x, double y, double z) {
double t_0 = x + (-1.0 / x);
double t_1 = x + (y * 0.8862269254527579);
double tmp;
if (z <= -6.5) {
tmp = t_0;
} else if (z <= 6.5e-237) {
tmp = t_1;
} else if (z <= 5.5e-113) {
tmp = t_0;
} else if (z <= 5.6e-27) {
tmp = t_1;
} else {
tmp = x;
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: t_0
real(8) :: t_1
real(8) :: tmp
t_0 = x + ((-1.0d0) / x)
t_1 = x + (y * 0.8862269254527579d0)
if (z <= (-6.5d0)) then
tmp = t_0
else if (z <= 6.5d-237) then
tmp = t_1
else if (z <= 5.5d-113) then
tmp = t_0
else if (z <= 5.6d-27) then
tmp = t_1
else
tmp = x
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = x + (-1.0 / x);
double t_1 = x + (y * 0.8862269254527579);
double tmp;
if (z <= -6.5) {
tmp = t_0;
} else if (z <= 6.5e-237) {
tmp = t_1;
} else if (z <= 5.5e-113) {
tmp = t_0;
} else if (z <= 5.6e-27) {
tmp = t_1;
} else {
tmp = x;
}
return tmp;
}
def code(x, y, z): t_0 = x + (-1.0 / x) t_1 = x + (y * 0.8862269254527579) tmp = 0 if z <= -6.5: tmp = t_0 elif z <= 6.5e-237: tmp = t_1 elif z <= 5.5e-113: tmp = t_0 elif z <= 5.6e-27: tmp = t_1 else: tmp = x return tmp
function code(x, y, z) t_0 = Float64(x + Float64(-1.0 / x)) t_1 = Float64(x + Float64(y * 0.8862269254527579)) tmp = 0.0 if (z <= -6.5) tmp = t_0; elseif (z <= 6.5e-237) tmp = t_1; elseif (z <= 5.5e-113) tmp = t_0; elseif (z <= 5.6e-27) tmp = t_1; else tmp = x; end return tmp end
function tmp_2 = code(x, y, z) t_0 = x + (-1.0 / x); t_1 = x + (y * 0.8862269254527579); tmp = 0.0; if (z <= -6.5) tmp = t_0; elseif (z <= 6.5e-237) tmp = t_1; elseif (z <= 5.5e-113) tmp = t_0; elseif (z <= 5.6e-27) tmp = t_1; else tmp = x; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(x + N[(-1.0 / x), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[(x + N[(y * 0.8862269254527579), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -6.5], t$95$0, If[LessEqual[z, 6.5e-237], t$95$1, If[LessEqual[z, 5.5e-113], t$95$0, If[LessEqual[z, 5.6e-27], t$95$1, x]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := x + \frac{-1}{x}\\
t_1 := x + y \cdot 0.8862269254527579\\
\mathbf{if}\;z \leq -6.5:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 6.5 \cdot 10^{-237}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 5.5 \cdot 10^{-113}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 5.6 \cdot 10^{-27}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\end{array}
if z < -6.5 or 6.5000000000000001e-237 < z < 5.50000000000000053e-113Initial program 92.2%
remove-double-neg92.2%
neg-mul-192.2%
associate-/l*92.2%
neg-mul-192.2%
associate-/r*92.2%
div-sub92.4%
metadata-eval92.4%
associate-/l*92.4%
*-commutative92.4%
neg-mul-192.4%
distribute-lft-neg-out92.4%
/-rgt-identity92.4%
div-sub92.3%
associate-/r*92.3%
neg-mul-192.3%
*-rgt-identity92.3%
times-frac92.3%
/-rgt-identity92.3%
*-commutative92.3%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in y around inf 95.5%
if -6.5 < z < 6.5000000000000001e-237 or 5.50000000000000053e-113 < z < 5.5999999999999999e-27Initial program 99.8%
remove-double-neg99.8%
neg-mul-199.8%
associate-/l*99.8%
neg-mul-199.8%
associate-/r*99.8%
div-sub99.8%
metadata-eval99.8%
associate-/l*99.8%
*-commutative99.8%
neg-mul-199.8%
distribute-lft-neg-out99.8%
/-rgt-identity99.8%
div-sub99.8%
associate-/r*99.8%
neg-mul-199.8%
*-rgt-identity99.8%
times-frac99.8%
/-rgt-identity99.8%
*-commutative99.8%
associate-*r/99.8%
Simplified99.8%
Taylor expanded in z around 0 98.6%
associate-*r/98.7%
metadata-eval98.7%
Simplified98.7%
Taylor expanded in x around 0 76.4%
*-commutative76.4%
Simplified76.4%
if 5.5999999999999999e-27 < z Initial program 92.8%
remove-double-neg92.8%
neg-mul-192.8%
associate-/l*92.8%
neg-mul-192.8%
associate-/r*92.8%
div-sub92.8%
metadata-eval92.8%
associate-/l*92.8%
*-commutative92.8%
neg-mul-192.8%
distribute-lft-neg-out92.8%
/-rgt-identity92.8%
div-sub92.8%
associate-/r*92.8%
neg-mul-192.8%
*-rgt-identity92.8%
times-frac92.8%
/-rgt-identity92.8%
*-commutative92.8%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in z around 0 61.4%
associate-*r/61.4%
metadata-eval61.4%
Simplified61.4%
Taylor expanded in x around 0 48.6%
*-commutative48.6%
Simplified48.6%
Taylor expanded in x around inf 100.0%
Final simplification90.5%
(FPCore (x y z)
:precision binary64
(let* ((t_0 (+ x (/ -1.0 x))))
(if (<= z -0.45)
t_0
(if (<= z 1.5e-237)
(+ x (/ y 1.1283791670955126))
(if (<= z 7.2e-113)
t_0
(if (<= z 5.5e-27) (+ x (* y 0.8862269254527579)) x))))))
double code(double x, double y, double z) {
double t_0 = x + (-1.0 / x);
double tmp;
if (z <= -0.45) {
tmp = t_0;
} else if (z <= 1.5e-237) {
tmp = x + (y / 1.1283791670955126);
} else if (z <= 7.2e-113) {
tmp = t_0;
} else if (z <= 5.5e-27) {
tmp = x + (y * 0.8862269254527579);
} else {
tmp = x;
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: t_0
real(8) :: tmp
t_0 = x + ((-1.0d0) / x)
if (z <= (-0.45d0)) then
tmp = t_0
else if (z <= 1.5d-237) then
tmp = x + (y / 1.1283791670955126d0)
else if (z <= 7.2d-113) then
tmp = t_0
else if (z <= 5.5d-27) then
tmp = x + (y * 0.8862269254527579d0)
else
tmp = x
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = x + (-1.0 / x);
double tmp;
if (z <= -0.45) {
tmp = t_0;
} else if (z <= 1.5e-237) {
tmp = x + (y / 1.1283791670955126);
} else if (z <= 7.2e-113) {
tmp = t_0;
} else if (z <= 5.5e-27) {
tmp = x + (y * 0.8862269254527579);
} else {
tmp = x;
}
return tmp;
}
def code(x, y, z): t_0 = x + (-1.0 / x) tmp = 0 if z <= -0.45: tmp = t_0 elif z <= 1.5e-237: tmp = x + (y / 1.1283791670955126) elif z <= 7.2e-113: tmp = t_0 elif z <= 5.5e-27: tmp = x + (y * 0.8862269254527579) else: tmp = x return tmp
function code(x, y, z) t_0 = Float64(x + Float64(-1.0 / x)) tmp = 0.0 if (z <= -0.45) tmp = t_0; elseif (z <= 1.5e-237) tmp = Float64(x + Float64(y / 1.1283791670955126)); elseif (z <= 7.2e-113) tmp = t_0; elseif (z <= 5.5e-27) tmp = Float64(x + Float64(y * 0.8862269254527579)); else tmp = x; end return tmp end
function tmp_2 = code(x, y, z) t_0 = x + (-1.0 / x); tmp = 0.0; if (z <= -0.45) tmp = t_0; elseif (z <= 1.5e-237) tmp = x + (y / 1.1283791670955126); elseif (z <= 7.2e-113) tmp = t_0; elseif (z <= 5.5e-27) tmp = x + (y * 0.8862269254527579); else tmp = x; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(x + N[(-1.0 / x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -0.45], t$95$0, If[LessEqual[z, 1.5e-237], N[(x + N[(y / 1.1283791670955126), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 7.2e-113], t$95$0, If[LessEqual[z, 5.5e-27], N[(x + N[(y * 0.8862269254527579), $MachinePrecision]), $MachinePrecision], x]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := x + \frac{-1}{x}\\
\mathbf{if}\;z \leq -0.45:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.5 \cdot 10^{-237}:\\
\;\;\;\;x + \frac{y}{1.1283791670955126}\\
\mathbf{elif}\;z \leq 7.2 \cdot 10^{-113}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 5.5 \cdot 10^{-27}:\\
\;\;\;\;x + y \cdot 0.8862269254527579\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\end{array}
if z < -0.450000000000000011 or 1.50000000000000012e-237 < z < 7.1999999999999995e-113Initial program 92.2%
remove-double-neg92.2%
neg-mul-192.2%
associate-/l*92.2%
neg-mul-192.2%
associate-/r*92.2%
div-sub92.4%
metadata-eval92.4%
associate-/l*92.4%
*-commutative92.4%
neg-mul-192.4%
distribute-lft-neg-out92.4%
/-rgt-identity92.4%
div-sub92.3%
associate-/r*92.3%
neg-mul-192.3%
*-rgt-identity92.3%
times-frac92.3%
/-rgt-identity92.3%
*-commutative92.3%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in y around inf 95.5%
if -0.450000000000000011 < z < 1.50000000000000012e-237Initial program 99.8%
remove-double-neg99.8%
neg-mul-199.8%
associate-/l*99.8%
neg-mul-199.8%
associate-/r*99.8%
div-sub99.8%
metadata-eval99.8%
associate-/l*99.8%
*-commutative99.8%
neg-mul-199.8%
distribute-lft-neg-out99.8%
/-rgt-identity99.8%
div-sub99.8%
associate-/r*99.8%
neg-mul-199.8%
*-rgt-identity99.8%
times-frac99.8%
/-rgt-identity99.8%
*-commutative99.8%
associate-*r/99.8%
Simplified99.8%
Taylor expanded in z around 0 98.3%
associate-*r/98.4%
metadata-eval98.4%
Simplified98.4%
Taylor expanded in x around 0 75.5%
*-commutative75.5%
Simplified75.5%
metadata-eval75.5%
div-inv75.5%
Applied egg-rr75.5%
if 7.1999999999999995e-113 < z < 5.5000000000000002e-27Initial program 99.8%
remove-double-neg99.8%
neg-mul-199.8%
associate-/l*99.8%
neg-mul-199.8%
associate-/r*99.8%
div-sub99.8%
metadata-eval99.8%
associate-/l*99.8%
*-commutative99.8%
neg-mul-199.8%
distribute-lft-neg-out99.8%
/-rgt-identity99.8%
div-sub99.8%
associate-/r*99.8%
neg-mul-199.8%
*-rgt-identity99.8%
times-frac99.8%
/-rgt-identity99.8%
*-commutative99.8%
associate-*r/99.8%
Simplified99.8%
Taylor expanded in z around 0 99.8%
associate-*r/99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in x around 0 79.5%
*-commutative79.5%
Simplified79.5%
if 5.5000000000000002e-27 < z Initial program 92.8%
remove-double-neg92.8%
neg-mul-192.8%
associate-/l*92.8%
neg-mul-192.8%
associate-/r*92.8%
div-sub92.8%
metadata-eval92.8%
associate-/l*92.8%
*-commutative92.8%
neg-mul-192.8%
distribute-lft-neg-out92.8%
/-rgt-identity92.8%
div-sub92.8%
associate-/r*92.8%
neg-mul-192.8%
*-rgt-identity92.8%
times-frac92.8%
/-rgt-identity92.8%
*-commutative92.8%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in z around 0 61.4%
associate-*r/61.4%
metadata-eval61.4%
Simplified61.4%
Taylor expanded in x around 0 48.6%
*-commutative48.6%
Simplified48.6%
Taylor expanded in x around inf 100.0%
Final simplification90.5%
(FPCore (x y z)
:precision binary64
(let* ((t_0 (+ x (/ -1.0 x))))
(if (<= z -1.1)
t_0
(if (<= z 8.5e-238)
(+ x (* y (+ 0.8862269254527579 (* z -0.8862269254527579))))
(if (<= z 8.4e-113)
t_0
(if (<= z 3e-27) (+ x (* y 0.8862269254527579)) x))))))
double code(double x, double y, double z) {
double t_0 = x + (-1.0 / x);
double tmp;
if (z <= -1.1) {
tmp = t_0;
} else if (z <= 8.5e-238) {
tmp = x + (y * (0.8862269254527579 + (z * -0.8862269254527579)));
} else if (z <= 8.4e-113) {
tmp = t_0;
} else if (z <= 3e-27) {
tmp = x + (y * 0.8862269254527579);
} else {
tmp = x;
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: t_0
real(8) :: tmp
t_0 = x + ((-1.0d0) / x)
if (z <= (-1.1d0)) then
tmp = t_0
else if (z <= 8.5d-238) then
tmp = x + (y * (0.8862269254527579d0 + (z * (-0.8862269254527579d0))))
else if (z <= 8.4d-113) then
tmp = t_0
else if (z <= 3d-27) then
tmp = x + (y * 0.8862269254527579d0)
else
tmp = x
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = x + (-1.0 / x);
double tmp;
if (z <= -1.1) {
tmp = t_0;
} else if (z <= 8.5e-238) {
tmp = x + (y * (0.8862269254527579 + (z * -0.8862269254527579)));
} else if (z <= 8.4e-113) {
tmp = t_0;
} else if (z <= 3e-27) {
tmp = x + (y * 0.8862269254527579);
} else {
tmp = x;
}
return tmp;
}
def code(x, y, z): t_0 = x + (-1.0 / x) tmp = 0 if z <= -1.1: tmp = t_0 elif z <= 8.5e-238: tmp = x + (y * (0.8862269254527579 + (z * -0.8862269254527579))) elif z <= 8.4e-113: tmp = t_0 elif z <= 3e-27: tmp = x + (y * 0.8862269254527579) else: tmp = x return tmp
function code(x, y, z) t_0 = Float64(x + Float64(-1.0 / x)) tmp = 0.0 if (z <= -1.1) tmp = t_0; elseif (z <= 8.5e-238) tmp = Float64(x + Float64(y * Float64(0.8862269254527579 + Float64(z * -0.8862269254527579)))); elseif (z <= 8.4e-113) tmp = t_0; elseif (z <= 3e-27) tmp = Float64(x + Float64(y * 0.8862269254527579)); else tmp = x; end return tmp end
function tmp_2 = code(x, y, z) t_0 = x + (-1.0 / x); tmp = 0.0; if (z <= -1.1) tmp = t_0; elseif (z <= 8.5e-238) tmp = x + (y * (0.8862269254527579 + (z * -0.8862269254527579))); elseif (z <= 8.4e-113) tmp = t_0; elseif (z <= 3e-27) tmp = x + (y * 0.8862269254527579); else tmp = x; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(x + N[(-1.0 / x), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -1.1], t$95$0, If[LessEqual[z, 8.5e-238], N[(x + N[(y * N[(0.8862269254527579 + N[(z * -0.8862269254527579), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 8.4e-113], t$95$0, If[LessEqual[z, 3e-27], N[(x + N[(y * 0.8862269254527579), $MachinePrecision]), $MachinePrecision], x]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := x + \frac{-1}{x}\\
\mathbf{if}\;z \leq -1.1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 8.5 \cdot 10^{-238}:\\
\;\;\;\;x + y \cdot \left(0.8862269254527579 + z \cdot -0.8862269254527579\right)\\
\mathbf{elif}\;z \leq 8.4 \cdot 10^{-113}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 3 \cdot 10^{-27}:\\
\;\;\;\;x + y \cdot 0.8862269254527579\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\end{array}
if z < -1.1000000000000001 or 8.5000000000000006e-238 < z < 8.39999999999999999e-113Initial program 92.2%
remove-double-neg92.2%
neg-mul-192.2%
associate-/l*92.2%
neg-mul-192.2%
associate-/r*92.2%
div-sub92.4%
metadata-eval92.4%
associate-/l*92.4%
*-commutative92.4%
neg-mul-192.4%
distribute-lft-neg-out92.4%
/-rgt-identity92.4%
div-sub92.3%
associate-/r*92.3%
neg-mul-192.3%
*-rgt-identity92.3%
times-frac92.3%
/-rgt-identity92.3%
*-commutative92.3%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in y around inf 95.5%
if -1.1000000000000001 < z < 8.5000000000000006e-238Initial program 99.8%
Taylor expanded in z around 0 98.6%
Taylor expanded in y around 0 75.8%
Taylor expanded in z around 0 75.7%
+-commutative75.7%
*-commutative75.7%
*-commutative75.7%
associate-*r*75.7%
*-commutative75.7%
distribute-lft-in75.7%
Simplified75.7%
if 8.39999999999999999e-113 < z < 3.0000000000000001e-27Initial program 99.8%
remove-double-neg99.8%
neg-mul-199.8%
associate-/l*99.8%
neg-mul-199.8%
associate-/r*99.8%
div-sub99.8%
metadata-eval99.8%
associate-/l*99.8%
*-commutative99.8%
neg-mul-199.8%
distribute-lft-neg-out99.8%
/-rgt-identity99.8%
div-sub99.8%
associate-/r*99.8%
neg-mul-199.8%
*-rgt-identity99.8%
times-frac99.8%
/-rgt-identity99.8%
*-commutative99.8%
associate-*r/99.8%
Simplified99.8%
Taylor expanded in z around 0 99.8%
associate-*r/99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in x around 0 79.5%
*-commutative79.5%
Simplified79.5%
if 3.0000000000000001e-27 < z Initial program 92.8%
remove-double-neg92.8%
neg-mul-192.8%
associate-/l*92.8%
neg-mul-192.8%
associate-/r*92.8%
div-sub92.8%
metadata-eval92.8%
associate-/l*92.8%
*-commutative92.8%
neg-mul-192.8%
distribute-lft-neg-out92.8%
/-rgt-identity92.8%
div-sub92.8%
associate-/r*92.8%
neg-mul-192.8%
*-rgt-identity92.8%
times-frac92.8%
/-rgt-identity92.8%
*-commutative92.8%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in z around 0 61.4%
associate-*r/61.4%
metadata-eval61.4%
Simplified61.4%
Taylor expanded in x around 0 48.6%
*-commutative48.6%
Simplified48.6%
Taylor expanded in x around inf 100.0%
Final simplification90.6%
(FPCore (x y z) :precision binary64 (if (<= z -350000000.0) (+ x (/ -1.0 x)) (if (<= z 8.5e-26) (+ x (/ -1.0 (- x (/ 1.1283791670955126 y)))) x)))
double code(double x, double y, double z) {
double tmp;
if (z <= -350000000.0) {
tmp = x + (-1.0 / x);
} else if (z <= 8.5e-26) {
tmp = x + (-1.0 / (x - (1.1283791670955126 / y)));
} else {
tmp = x;
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (z <= (-350000000.0d0)) then
tmp = x + ((-1.0d0) / x)
else if (z <= 8.5d-26) then
tmp = x + ((-1.0d0) / (x - (1.1283791670955126d0 / y)))
else
tmp = x
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (z <= -350000000.0) {
tmp = x + (-1.0 / x);
} else if (z <= 8.5e-26) {
tmp = x + (-1.0 / (x - (1.1283791670955126 / y)));
} else {
tmp = x;
}
return tmp;
}
def code(x, y, z): tmp = 0 if z <= -350000000.0: tmp = x + (-1.0 / x) elif z <= 8.5e-26: tmp = x + (-1.0 / (x - (1.1283791670955126 / y))) else: tmp = x return tmp
function code(x, y, z) tmp = 0.0 if (z <= -350000000.0) tmp = Float64(x + Float64(-1.0 / x)); elseif (z <= 8.5e-26) tmp = Float64(x + Float64(-1.0 / Float64(x - Float64(1.1283791670955126 / y)))); else tmp = x; end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (z <= -350000000.0) tmp = x + (-1.0 / x); elseif (z <= 8.5e-26) tmp = x + (-1.0 / (x - (1.1283791670955126 / y))); else tmp = x; end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[z, -350000000.0], N[(x + N[(-1.0 / x), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 8.5e-26], N[(x + N[(-1.0 / N[(x - N[(1.1283791670955126 / y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], x]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -350000000:\\
\;\;\;\;x + \frac{-1}{x}\\
\mathbf{elif}\;z \leq 8.5 \cdot 10^{-26}:\\
\;\;\;\;x + \frac{-1}{x - \frac{1.1283791670955126}{y}}\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\end{array}
if z < -3.5e8Initial program 89.0%
remove-double-neg89.0%
neg-mul-189.0%
associate-/l*89.1%
neg-mul-189.1%
associate-/r*89.1%
div-sub89.4%
metadata-eval89.4%
associate-/l*89.4%
*-commutative89.4%
neg-mul-189.4%
distribute-lft-neg-out89.4%
/-rgt-identity89.4%
div-sub89.2%
associate-/r*89.2%
neg-mul-189.2%
*-rgt-identity89.2%
times-frac89.2%
/-rgt-identity89.2%
*-commutative89.2%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in y around inf 100.0%
if -3.5e8 < z < 8.50000000000000004e-26Initial program 99.8%
remove-double-neg99.8%
neg-mul-199.8%
associate-/l*99.8%
neg-mul-199.8%
associate-/r*99.8%
div-sub99.8%
metadata-eval99.8%
associate-/l*99.8%
*-commutative99.8%
neg-mul-199.8%
distribute-lft-neg-out99.8%
/-rgt-identity99.8%
div-sub99.8%
associate-/r*99.8%
neg-mul-199.8%
*-rgt-identity99.8%
times-frac99.8%
/-rgt-identity99.8%
*-commutative99.8%
associate-*r/99.8%
Simplified99.8%
Taylor expanded in z around 0 98.9%
associate-*r/99.0%
metadata-eval99.0%
Simplified99.0%
if 8.50000000000000004e-26 < z Initial program 92.8%
remove-double-neg92.8%
neg-mul-192.8%
associate-/l*92.8%
neg-mul-192.8%
associate-/r*92.8%
div-sub92.8%
metadata-eval92.8%
associate-/l*92.8%
*-commutative92.8%
neg-mul-192.8%
distribute-lft-neg-out92.8%
/-rgt-identity92.8%
div-sub92.8%
associate-/r*92.8%
neg-mul-192.8%
*-rgt-identity92.8%
times-frac92.8%
/-rgt-identity92.8%
*-commutative92.8%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in z around 0 61.4%
associate-*r/61.4%
metadata-eval61.4%
Simplified61.4%
Taylor expanded in x around 0 48.6%
*-commutative48.6%
Simplified48.6%
Taylor expanded in x around inf 100.0%
Final simplification99.6%
(FPCore (x y z) :precision binary64 (if (<= z -6.8e-137) x (if (<= z 6e-26) (+ x (* y 0.8862269254527579)) x)))
double code(double x, double y, double z) {
double tmp;
if (z <= -6.8e-137) {
tmp = x;
} else if (z <= 6e-26) {
tmp = x + (y * 0.8862269254527579);
} else {
tmp = x;
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (z <= (-6.8d-137)) then
tmp = x
else if (z <= 6d-26) then
tmp = x + (y * 0.8862269254527579d0)
else
tmp = x
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (z <= -6.8e-137) {
tmp = x;
} else if (z <= 6e-26) {
tmp = x + (y * 0.8862269254527579);
} else {
tmp = x;
}
return tmp;
}
def code(x, y, z): tmp = 0 if z <= -6.8e-137: tmp = x elif z <= 6e-26: tmp = x + (y * 0.8862269254527579) else: tmp = x return tmp
function code(x, y, z) tmp = 0.0 if (z <= -6.8e-137) tmp = x; elseif (z <= 6e-26) tmp = Float64(x + Float64(y * 0.8862269254527579)); else tmp = x; end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (z <= -6.8e-137) tmp = x; elseif (z <= 6e-26) tmp = x + (y * 0.8862269254527579); else tmp = x; end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[z, -6.8e-137], x, If[LessEqual[z, 6e-26], N[(x + N[(y * 0.8862269254527579), $MachinePrecision]), $MachinePrecision], x]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -6.8 \cdot 10^{-137}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 6 \cdot 10^{-26}:\\
\;\;\;\;x + y \cdot 0.8862269254527579\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\end{array}
if z < -6.80000000000000028e-137 or 6.00000000000000023e-26 < z Initial program 92.5%
remove-double-neg92.5%
neg-mul-192.5%
associate-/l*92.5%
neg-mul-192.5%
associate-/r*92.5%
div-sub92.6%
metadata-eval92.6%
associate-/l*92.6%
*-commutative92.6%
neg-mul-192.6%
distribute-lft-neg-out92.6%
/-rgt-identity92.6%
div-sub92.5%
associate-/r*92.5%
neg-mul-192.5%
*-rgt-identity92.5%
times-frac92.5%
/-rgt-identity92.5%
*-commutative92.5%
associate-*r/100.0%
Simplified100.0%
Taylor expanded in z around 0 69.0%
associate-*r/69.1%
metadata-eval69.1%
Simplified69.1%
Taylor expanded in x around 0 51.2%
*-commutative51.2%
Simplified51.2%
Taylor expanded in x around inf 81.0%
if -6.80000000000000028e-137 < z < 6.00000000000000023e-26Initial program 99.8%
remove-double-neg99.8%
neg-mul-199.8%
associate-/l*99.9%
neg-mul-199.9%
associate-/r*99.9%
div-sub99.9%
metadata-eval99.9%
associate-/l*99.9%
*-commutative99.9%
neg-mul-199.9%
distribute-lft-neg-out99.9%
/-rgt-identity99.9%
div-sub99.9%
associate-/r*99.9%
neg-mul-199.9%
*-rgt-identity99.9%
times-frac99.9%
/-rgt-identity99.9%
*-commutative99.9%
associate-*r/99.9%
Simplified99.9%
Taylor expanded in z around 0 99.8%
associate-*r/99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in x around 0 73.6%
*-commutative73.6%
Simplified73.6%
Final simplification78.5%
(FPCore (x y z) :precision binary64 x)
double code(double x, double y, double z) {
return x;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = x
end function
public static double code(double x, double y, double z) {
return x;
}
def code(x, y, z): return x
function code(x, y, z) return x end
function tmp = code(x, y, z) tmp = x; end
code[x_, y_, z_] := x
\begin{array}{l}
\\
x
\end{array}
Initial program 94.9%
remove-double-neg94.9%
neg-mul-194.9%
associate-/l*94.9%
neg-mul-194.9%
associate-/r*94.9%
div-sub95.0%
metadata-eval95.0%
associate-/l*95.0%
*-commutative95.0%
neg-mul-195.0%
distribute-lft-neg-out95.0%
/-rgt-identity95.0%
div-sub95.0%
associate-/r*95.0%
neg-mul-195.0%
*-rgt-identity95.0%
times-frac95.0%
/-rgt-identity95.0%
*-commutative95.0%
associate-*r/99.9%
Simplified99.9%
Taylor expanded in z around 0 79.4%
associate-*r/79.4%
metadata-eval79.4%
Simplified79.4%
Taylor expanded in x around 0 58.7%
*-commutative58.7%
Simplified58.7%
Taylor expanded in x around inf 74.4%
Final simplification74.4%
(FPCore (x y z) :precision binary64 (+ x (/ 1.0 (- (* (/ 1.1283791670955126 y) (exp z)) x))))
double code(double x, double y, double z) {
return x + (1.0 / (((1.1283791670955126 / y) * exp(z)) - x));
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = x + (1.0d0 / (((1.1283791670955126d0 / y) * exp(z)) - x))
end function
public static double code(double x, double y, double z) {
return x + (1.0 / (((1.1283791670955126 / y) * Math.exp(z)) - x));
}
def code(x, y, z): return x + (1.0 / (((1.1283791670955126 / y) * math.exp(z)) - x))
function code(x, y, z) return Float64(x + Float64(1.0 / Float64(Float64(Float64(1.1283791670955126 / y) * exp(z)) - x))) end
function tmp = code(x, y, z) tmp = x + (1.0 / (((1.1283791670955126 / y) * exp(z)) - x)); end
code[x_, y_, z_] := N[(x + N[(1.0 / N[(N[(N[(1.1283791670955126 / y), $MachinePrecision] * N[Exp[z], $MachinePrecision]), $MachinePrecision] - x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x + \frac{1}{\frac{1.1283791670955126}{y} \cdot e^{z} - x}
\end{array}
herbie shell --seed 2023271
(FPCore (x y z)
:name "Numeric.SpecFunctions:invErfc from math-functions-0.1.5.2, A"
:precision binary64
:herbie-target
(+ x (/ 1.0 (- (* (/ 1.1283791670955126 y) (exp z)) x)))
(+ x (/ y (- (* 1.1283791670955126 (exp z)) (* x y)))))