
(FPCore (x y z t) :precision binary64 (- x (/ (log (+ (- 1.0 y) (* y (exp z)))) t)))
double code(double x, double y, double z, double t) {
return x - (log(((1.0 - y) + (y * exp(z)))) / t);
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = x - (log(((1.0d0 - y) + (y * exp(z)))) / t)
end function
public static double code(double x, double y, double z, double t) {
return x - (Math.log(((1.0 - y) + (y * Math.exp(z)))) / t);
}
def code(x, y, z, t): return x - (math.log(((1.0 - y) + (y * math.exp(z)))) / t)
function code(x, y, z, t) return Float64(x - Float64(log(Float64(Float64(1.0 - y) + Float64(y * exp(z)))) / t)) end
function tmp = code(x, y, z, t) tmp = x - (log(((1.0 - y) + (y * exp(z)))) / t); end
code[x_, y_, z_, t_] := N[(x - N[(N[Log[N[(N[(1.0 - y), $MachinePrecision] + N[(y * N[Exp[z], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x - \frac{\log \left(\left(1 - y\right) + y \cdot e^{z}\right)}{t}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 6 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y z t) :precision binary64 (- x (/ (log (+ (- 1.0 y) (* y (exp z)))) t)))
double code(double x, double y, double z, double t) {
return x - (log(((1.0 - y) + (y * exp(z)))) / t);
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = x - (log(((1.0d0 - y) + (y * exp(z)))) / t)
end function
public static double code(double x, double y, double z, double t) {
return x - (Math.log(((1.0 - y) + (y * Math.exp(z)))) / t);
}
def code(x, y, z, t): return x - (math.log(((1.0 - y) + (y * math.exp(z)))) / t)
function code(x, y, z, t) return Float64(x - Float64(log(Float64(Float64(1.0 - y) + Float64(y * exp(z)))) / t)) end
function tmp = code(x, y, z, t) tmp = x - (log(((1.0 - y) + (y * exp(z)))) / t); end
code[x_, y_, z_, t_] := N[(x - N[(N[Log[N[(N[(1.0 - y), $MachinePrecision] + N[(y * N[Exp[z], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x - \frac{\log \left(\left(1 - y\right) + y \cdot e^{z}\right)}{t}
\end{array}
(FPCore (x y z t) :precision binary64 (- x (/ (log1p (* y (expm1 z))) t)))
double code(double x, double y, double z, double t) {
return x - (log1p((y * expm1(z))) / t);
}
public static double code(double x, double y, double z, double t) {
return x - (Math.log1p((y * Math.expm1(z))) / t);
}
def code(x, y, z, t): return x - (math.log1p((y * math.expm1(z))) / t)
function code(x, y, z, t) return Float64(x - Float64(log1p(Float64(y * expm1(z))) / t)) end
code[x_, y_, z_, t_] := N[(x - N[(N[Log[1 + N[(y * N[(Exp[z] - 1), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x - \frac{\mathsf{log1p}\left(y \cdot \mathsf{expm1}\left(z\right)\right)}{t}
\end{array}
Initial program 58.9%
sub-neg58.9%
associate-+l+76.2%
cancel-sign-sub76.2%
log1p-def81.7%
cancel-sign-sub81.7%
+-commutative81.7%
unsub-neg81.7%
*-rgt-identity81.7%
distribute-lft-out--81.7%
expm1-def98.6%
Simplified98.6%
Final simplification98.6%
(FPCore (x y z t) :precision binary64 (if (<= (exp z) 0.0) (+ x (/ -1.0 (+ (* t 0.5) (/ t (* y (+ (exp z) -1.0)))))) (- x (/ (* y (+ z (* 0.5 (pow z 2.0)))) t))))
double code(double x, double y, double z, double t) {
double tmp;
if (exp(z) <= 0.0) {
tmp = x + (-1.0 / ((t * 0.5) + (t / (y * (exp(z) + -1.0)))));
} else {
tmp = x - ((y * (z + (0.5 * pow(z, 2.0)))) / t);
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: tmp
if (exp(z) <= 0.0d0) then
tmp = x + ((-1.0d0) / ((t * 0.5d0) + (t / (y * (exp(z) + (-1.0d0))))))
else
tmp = x - ((y * (z + (0.5d0 * (z ** 2.0d0)))) / t)
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double tmp;
if (Math.exp(z) <= 0.0) {
tmp = x + (-1.0 / ((t * 0.5) + (t / (y * (Math.exp(z) + -1.0)))));
} else {
tmp = x - ((y * (z + (0.5 * Math.pow(z, 2.0)))) / t);
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if math.exp(z) <= 0.0: tmp = x + (-1.0 / ((t * 0.5) + (t / (y * (math.exp(z) + -1.0))))) else: tmp = x - ((y * (z + (0.5 * math.pow(z, 2.0)))) / t) return tmp
function code(x, y, z, t) tmp = 0.0 if (exp(z) <= 0.0) tmp = Float64(x + Float64(-1.0 / Float64(Float64(t * 0.5) + Float64(t / Float64(y * Float64(exp(z) + -1.0)))))); else tmp = Float64(x - Float64(Float64(y * Float64(z + Float64(0.5 * (z ^ 2.0)))) / t)); end return tmp end
function tmp_2 = code(x, y, z, t) tmp = 0.0; if (exp(z) <= 0.0) tmp = x + (-1.0 / ((t * 0.5) + (t / (y * (exp(z) + -1.0))))); else tmp = x - ((y * (z + (0.5 * (z ^ 2.0)))) / t); end tmp_2 = tmp; end
code[x_, y_, z_, t_] := If[LessEqual[N[Exp[z], $MachinePrecision], 0.0], N[(x + N[(-1.0 / N[(N[(t * 0.5), $MachinePrecision] + N[(t / N[(y * N[(N[Exp[z], $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x - N[(N[(y * N[(z + N[(0.5 * N[Power[z, 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;e^{z} \leq 0:\\
\;\;\;\;x + \frac{-1}{t \cdot 0.5 + \frac{t}{y \cdot \left(e^{z} + -1\right)}}\\
\mathbf{else}:\\
\;\;\;\;x - \frac{y \cdot \left(z + 0.5 \cdot {z}^{2}\right)}{t}\\
\end{array}
\end{array}
if (exp.f64 z) < 0.0Initial program 81.1%
sub-neg81.1%
associate-+l+81.1%
cancel-sign-sub81.1%
log1p-def100.0%
cancel-sign-sub100.0%
+-commutative100.0%
unsub-neg100.0%
*-rgt-identity100.0%
distribute-lft-out--100.0%
expm1-def100.0%
Simplified100.0%
clear-num99.9%
inv-pow99.9%
Applied egg-rr99.9%
unpow-199.9%
Applied egg-rr99.9%
Taylor expanded in y around 0 84.0%
if 0.0 < (exp.f64 z) Initial program 49.7%
sub-neg49.7%
associate-+l+74.1%
cancel-sign-sub74.1%
log1p-def74.1%
cancel-sign-sub74.1%
+-commutative74.1%
unsub-neg74.1%
*-rgt-identity74.1%
distribute-lft-out--74.1%
expm1-def98.0%
Simplified98.0%
Taylor expanded in y around 0 73.3%
Taylor expanded in z around 0 87.4%
Final simplification86.4%
(FPCore (x y z t)
:precision binary64
(if (<= y -3.5e+102)
(+
x
(/
-1.0
(-
(+ (* (/ t y) -0.5) (/ t (* y z)))
(* z (+ (* -0.25 (/ t y)) (* (/ t y) 0.16666666666666666))))))
(- x (* y (/ (expm1 z) t)))))
double code(double x, double y, double z, double t) {
double tmp;
if (y <= -3.5e+102) {
tmp = x + (-1.0 / ((((t / y) * -0.5) + (t / (y * z))) - (z * ((-0.25 * (t / y)) + ((t / y) * 0.16666666666666666)))));
} else {
tmp = x - (y * (expm1(z) / t));
}
return tmp;
}
public static double code(double x, double y, double z, double t) {
double tmp;
if (y <= -3.5e+102) {
tmp = x + (-1.0 / ((((t / y) * -0.5) + (t / (y * z))) - (z * ((-0.25 * (t / y)) + ((t / y) * 0.16666666666666666)))));
} else {
tmp = x - (y * (Math.expm1(z) / t));
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if y <= -3.5e+102: tmp = x + (-1.0 / ((((t / y) * -0.5) + (t / (y * z))) - (z * ((-0.25 * (t / y)) + ((t / y) * 0.16666666666666666))))) else: tmp = x - (y * (math.expm1(z) / t)) return tmp
function code(x, y, z, t) tmp = 0.0 if (y <= -3.5e+102) tmp = Float64(x + Float64(-1.0 / Float64(Float64(Float64(Float64(t / y) * -0.5) + Float64(t / Float64(y * z))) - Float64(z * Float64(Float64(-0.25 * Float64(t / y)) + Float64(Float64(t / y) * 0.16666666666666666)))))); else tmp = Float64(x - Float64(y * Float64(expm1(z) / t))); end return tmp end
code[x_, y_, z_, t_] := If[LessEqual[y, -3.5e+102], N[(x + N[(-1.0 / N[(N[(N[(N[(t / y), $MachinePrecision] * -0.5), $MachinePrecision] + N[(t / N[(y * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(z * N[(N[(-0.25 * N[(t / y), $MachinePrecision]), $MachinePrecision] + N[(N[(t / y), $MachinePrecision] * 0.16666666666666666), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x - N[(y * N[(N[(Exp[z] - 1), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq -3.5 \cdot 10^{+102}:\\
\;\;\;\;x + \frac{-1}{\left(\frac{t}{y} \cdot -0.5 + \frac{t}{y \cdot z}\right) - z \cdot \left(-0.25 \cdot \frac{t}{y} + \frac{t}{y} \cdot 0.16666666666666666\right)}\\
\mathbf{else}:\\
\;\;\;\;x - y \cdot \frac{\mathsf{expm1}\left(z\right)}{t}\\
\end{array}
\end{array}
if y < -3.50000000000000011e102Initial program 37.9%
sub-neg37.9%
associate-+l+73.1%
cancel-sign-sub73.1%
log1p-def73.1%
cancel-sign-sub73.1%
+-commutative73.1%
unsub-neg73.1%
*-rgt-identity73.1%
distribute-lft-out--73.1%
expm1-def99.8%
Simplified99.8%
Taylor expanded in y around 0 43.1%
clear-num43.1%
inv-pow43.1%
expm1-udef55.2%
Applied egg-rr55.2%
unpow-155.2%
Simplified55.2%
Taylor expanded in z around 0 65.3%
if -3.50000000000000011e102 < y Initial program 64.9%
sub-neg64.9%
associate-+l+77.1%
cancel-sign-sub77.1%
log1p-def84.2%
cancel-sign-sub84.2%
+-commutative84.2%
unsub-neg84.2%
*-rgt-identity84.2%
distribute-lft-out--84.1%
expm1-def98.2%
Simplified98.2%
clear-num98.2%
inv-pow98.2%
Applied egg-rr98.2%
Taylor expanded in y around 0 81.4%
expm1-def90.7%
associate-*r/91.9%
Simplified91.9%
Final simplification86.0%
(FPCore (x y z t) :precision binary64 (if (<= z -1.9e+14) x (- x (* y (/ z t)))))
double code(double x, double y, double z, double t) {
double tmp;
if (z <= -1.9e+14) {
tmp = x;
} else {
tmp = x - (y * (z / t));
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: tmp
if (z <= (-1.9d+14)) then
tmp = x
else
tmp = x - (y * (z / t))
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double tmp;
if (z <= -1.9e+14) {
tmp = x;
} else {
tmp = x - (y * (z / t));
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if z <= -1.9e+14: tmp = x else: tmp = x - (y * (z / t)) return tmp
function code(x, y, z, t) tmp = 0.0 if (z <= -1.9e+14) tmp = x; else tmp = Float64(x - Float64(y * Float64(z / t))); end return tmp end
function tmp_2 = code(x, y, z, t) tmp = 0.0; if (z <= -1.9e+14) tmp = x; else tmp = x - (y * (z / t)); end tmp_2 = tmp; end
code[x_, y_, z_, t_] := If[LessEqual[z, -1.9e+14], x, N[(x - N[(y * N[(z / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -1.9 \cdot 10^{+14}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;x - y \cdot \frac{z}{t}\\
\end{array}
\end{array}
if z < -1.9e14Initial program 81.7%
sub-neg81.7%
associate-+l+81.7%
cancel-sign-sub81.7%
log1p-def100.0%
cancel-sign-sub100.0%
+-commutative100.0%
unsub-neg100.0%
*-rgt-identity100.0%
distribute-lft-out--100.0%
expm1-def100.0%
Simplified100.0%
clear-num99.9%
inv-pow99.9%
Applied egg-rr99.9%
Taylor expanded in z around 0 33.0%
associate-*r/33.1%
Simplified33.1%
associate-*r/33.0%
frac-2neg33.0%
neg-mul-133.0%
associate-/r*33.0%
distribute-lft-neg-in33.0%
add-sqr-sqrt17.7%
sqrt-unprod39.0%
sqr-neg39.0%
sqrt-unprod15.1%
add-sqr-sqrt31.0%
Applied egg-rr31.0%
associate-/l/31.0%
*-commutative31.0%
associate-/l*35.0%
Simplified35.0%
Taylor expanded in x around inf 63.5%
if -1.9e14 < z Initial program 50.0%
sub-neg50.0%
associate-+l+74.0%
cancel-sign-sub74.0%
log1p-def74.6%
cancel-sign-sub74.6%
+-commutative74.6%
unsub-neg74.6%
*-rgt-identity74.6%
distribute-lft-out--74.5%
expm1-def98.1%
Simplified98.1%
clear-num98.0%
inv-pow98.0%
Applied egg-rr98.0%
Taylor expanded in z around 0 86.6%
associate-*r/86.3%
Simplified86.3%
Final simplification79.9%
(FPCore (x y z t) :precision binary64 (if (<= z -2e+15) x (- x (/ (* y z) t))))
double code(double x, double y, double z, double t) {
double tmp;
if (z <= -2e+15) {
tmp = x;
} else {
tmp = x - ((y * z) / t);
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: tmp
if (z <= (-2d+15)) then
tmp = x
else
tmp = x - ((y * z) / t)
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double tmp;
if (z <= -2e+15) {
tmp = x;
} else {
tmp = x - ((y * z) / t);
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if z <= -2e+15: tmp = x else: tmp = x - ((y * z) / t) return tmp
function code(x, y, z, t) tmp = 0.0 if (z <= -2e+15) tmp = x; else tmp = Float64(x - Float64(Float64(y * z) / t)); end return tmp end
function tmp_2 = code(x, y, z, t) tmp = 0.0; if (z <= -2e+15) tmp = x; else tmp = x - ((y * z) / t); end tmp_2 = tmp; end
code[x_, y_, z_, t_] := If[LessEqual[z, -2e+15], x, N[(x - N[(N[(y * z), $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -2 \cdot 10^{+15}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;x - \frac{y \cdot z}{t}\\
\end{array}
\end{array}
if z < -2e15Initial program 81.7%
sub-neg81.7%
associate-+l+81.7%
cancel-sign-sub81.7%
log1p-def100.0%
cancel-sign-sub100.0%
+-commutative100.0%
unsub-neg100.0%
*-rgt-identity100.0%
distribute-lft-out--100.0%
expm1-def100.0%
Simplified100.0%
clear-num99.9%
inv-pow99.9%
Applied egg-rr99.9%
Taylor expanded in z around 0 33.0%
associate-*r/33.1%
Simplified33.1%
associate-*r/33.0%
frac-2neg33.0%
neg-mul-133.0%
associate-/r*33.0%
distribute-lft-neg-in33.0%
add-sqr-sqrt17.7%
sqrt-unprod39.0%
sqr-neg39.0%
sqrt-unprod15.1%
add-sqr-sqrt31.0%
Applied egg-rr31.0%
associate-/l/31.0%
*-commutative31.0%
associate-/l*35.0%
Simplified35.0%
Taylor expanded in x around inf 63.5%
if -2e15 < z Initial program 50.0%
sub-neg50.0%
associate-+l+74.0%
cancel-sign-sub74.0%
log1p-def74.6%
cancel-sign-sub74.6%
+-commutative74.6%
unsub-neg74.6%
*-rgt-identity74.6%
distribute-lft-out--74.5%
expm1-def98.1%
Simplified98.1%
Taylor expanded in z around 0 86.6%
Final simplification80.1%
(FPCore (x y z t) :precision binary64 x)
double code(double x, double y, double z, double t) {
return x;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = x
end function
public static double code(double x, double y, double z, double t) {
return x;
}
def code(x, y, z, t): return x
function code(x, y, z, t) return x end
function tmp = code(x, y, z, t) tmp = x; end
code[x_, y_, z_, t_] := x
\begin{array}{l}
\\
x
\end{array}
Initial program 58.9%
sub-neg58.9%
associate-+l+76.2%
cancel-sign-sub76.2%
log1p-def81.7%
cancel-sign-sub81.7%
+-commutative81.7%
unsub-neg81.7%
*-rgt-identity81.7%
distribute-lft-out--81.7%
expm1-def98.6%
Simplified98.6%
clear-num98.5%
inv-pow98.5%
Applied egg-rr98.5%
Taylor expanded in z around 0 71.5%
associate-*r/71.4%
Simplified71.4%
associate-*r/71.5%
frac-2neg71.5%
neg-mul-171.5%
associate-/r*71.5%
distribute-lft-neg-in71.5%
add-sqr-sqrt34.7%
sqrt-unprod59.7%
sqr-neg59.7%
sqrt-unprod31.6%
add-sqr-sqrt59.2%
Applied egg-rr59.2%
associate-/l/59.2%
*-commutative59.2%
associate-/l*59.2%
Simplified59.2%
Taylor expanded in x around inf 70.1%
Final simplification70.1%
(FPCore (x y z t)
:precision binary64
(let* ((t_1 (/ (- 0.5) (* y t))))
(if (< z -2.8874623088207947e+119)
(- (- x (/ t_1 (* z z))) (* t_1 (/ (/ 2.0 z) (* z z))))
(- x (/ (log (+ 1.0 (* z y))) t)))))
double code(double x, double y, double z, double t) {
double t_1 = -0.5 / (y * t);
double tmp;
if (z < -2.8874623088207947e+119) {
tmp = (x - (t_1 / (z * z))) - (t_1 * ((2.0 / z) / (z * z)));
} else {
tmp = x - (log((1.0 + (z * y))) / t);
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: t_1
real(8) :: tmp
t_1 = -0.5d0 / (y * t)
if (z < (-2.8874623088207947d+119)) then
tmp = (x - (t_1 / (z * z))) - (t_1 * ((2.0d0 / z) / (z * z)))
else
tmp = x - (log((1.0d0 + (z * y))) / t)
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double t_1 = -0.5 / (y * t);
double tmp;
if (z < -2.8874623088207947e+119) {
tmp = (x - (t_1 / (z * z))) - (t_1 * ((2.0 / z) / (z * z)));
} else {
tmp = x - (Math.log((1.0 + (z * y))) / t);
}
return tmp;
}
def code(x, y, z, t): t_1 = -0.5 / (y * t) tmp = 0 if z < -2.8874623088207947e+119: tmp = (x - (t_1 / (z * z))) - (t_1 * ((2.0 / z) / (z * z))) else: tmp = x - (math.log((1.0 + (z * y))) / t) return tmp
function code(x, y, z, t) t_1 = Float64(Float64(-0.5) / Float64(y * t)) tmp = 0.0 if (z < -2.8874623088207947e+119) tmp = Float64(Float64(x - Float64(t_1 / Float64(z * z))) - Float64(t_1 * Float64(Float64(2.0 / z) / Float64(z * z)))); else tmp = Float64(x - Float64(log(Float64(1.0 + Float64(z * y))) / t)); end return tmp end
function tmp_2 = code(x, y, z, t) t_1 = -0.5 / (y * t); tmp = 0.0; if (z < -2.8874623088207947e+119) tmp = (x - (t_1 / (z * z))) - (t_1 * ((2.0 / z) / (z * z))); else tmp = x - (log((1.0 + (z * y))) / t); end tmp_2 = tmp; end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[((-0.5) / N[(y * t), $MachinePrecision]), $MachinePrecision]}, If[Less[z, -2.8874623088207947e+119], N[(N[(x - N[(t$95$1 / N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(t$95$1 * N[(N[(2.0 / z), $MachinePrecision] / N[(z * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x - N[(N[Log[N[(1.0 + N[(z * y), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] / t), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \frac{-0.5}{y \cdot t}\\
\mathbf{if}\;z < -2.8874623088207947 \cdot 10^{+119}:\\
\;\;\;\;\left(x - \frac{t_1}{z \cdot z}\right) - t_1 \cdot \frac{\frac{2}{z}}{z \cdot z}\\
\mathbf{else}:\\
\;\;\;\;x - \frac{\log \left(1 + z \cdot y\right)}{t}\\
\end{array}
\end{array}
herbie shell --seed 2023334
(FPCore (x y z t)
:name "System.Random.MWC.Distributions:truncatedExp from mwc-random-0.13.3.2"
:precision binary64
:herbie-target
(if (< z -2.8874623088207947e+119) (- (- x (/ (/ (- 0.5) (* y t)) (* z z))) (* (/ (- 0.5) (* y t)) (/ (/ 2.0 z) (* z z)))) (- x (/ (log (+ 1.0 (* z y))) t)))
(- x (/ (log (+ (- 1.0 y) (* y (exp z)))) t)))