x \cdot \frac{\frac{y}{z} \cdot t}{t}\begin{array}{l}
\mathbf{if}\;\frac{y}{z} \le -1.35613759911877656476275151503320492094 \cdot 10^{280}:\\
\;\;\;\;y \cdot \frac{x}{z}\\
\mathbf{elif}\;\frac{y}{z} \le -8.828782166850766038005620975563547450989 \cdot 10^{-175}:\\
\;\;\;\;\frac{y}{z} \cdot x\\
\mathbf{elif}\;\frac{y}{z} \le 6.939139322974091469623957424428358865557 \cdot 10^{-194}:\\
\;\;\;\;\frac{y \cdot x}{z}\\
\mathbf{elif}\;\frac{y}{z} \le 2.459953299034684076090573649758520228965 \cdot 10^{86}:\\
\;\;\;\;\frac{y}{z} \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \frac{x}{z}\\
\end{array}double f(double x, double y, double z, double t) {
double r62000 = x;
double r62001 = y;
double r62002 = z;
double r62003 = r62001 / r62002;
double r62004 = t;
double r62005 = r62003 * r62004;
double r62006 = r62005 / r62004;
double r62007 = r62000 * r62006;
return r62007;
}
double f(double x, double y, double z, double __attribute__((unused)) t) {
double r62008 = y;
double r62009 = z;
double r62010 = r62008 / r62009;
double r62011 = -1.3561375991187766e+280;
bool r62012 = r62010 <= r62011;
double r62013 = x;
double r62014 = r62013 / r62009;
double r62015 = r62008 * r62014;
double r62016 = -8.828782166850766e-175;
bool r62017 = r62010 <= r62016;
double r62018 = r62010 * r62013;
double r62019 = 6.939139322974091e-194;
bool r62020 = r62010 <= r62019;
double r62021 = r62008 * r62013;
double r62022 = r62021 / r62009;
double r62023 = 2.459953299034684e+86;
bool r62024 = r62010 <= r62023;
double r62025 = r62024 ? r62018 : r62015;
double r62026 = r62020 ? r62022 : r62025;
double r62027 = r62017 ? r62018 : r62026;
double r62028 = r62012 ? r62015 : r62027;
return r62028;
}



Bits error versus x



Bits error versus y



Bits error versus z



Bits error versus t
Results
if (/ y z) < -1.3561375991187766e+280 or 2.459953299034684e+86 < (/ y z) Initial program 34.5
Simplified20.9
rmApplied div-inv21.0
Applied associate-*l*3.9
Simplified3.8
if -1.3561375991187766e+280 < (/ y z) < -8.828782166850766e-175 or 6.939139322974091e-194 < (/ y z) < 2.459953299034684e+86Initial program 8.3
Simplified0.2
if -8.828782166850766e-175 < (/ y z) < 6.939139322974091e-194Initial program 17.1
Simplified9.7
rmApplied add-cube-cbrt10.0
Applied *-un-lft-identity10.0
Applied times-frac10.0
Applied associate-*l*2.7
rmApplied associate-*l/1.3
Applied frac-times1.3
Simplified1.3
Simplified0.8
Final simplification1.0
herbie shell --seed 2019326
(FPCore (x y z t)
:name "Graphics.Rendering.Chart.Backend.Diagrams:calcFontMetrics from Chart-diagrams-1.5.1"
:precision binary64
(* x (/ (* (/ y z) t) t)))