x \cdot \frac{\frac{y}{z} \cdot t}{t}\begin{array}{l}
\mathbf{if}\;\frac{y}{z} \le -4.969910642538988 \cdot 10^{157}:\\
\;\;\;\;{\left(\frac{x \cdot y}{z}\right)}^{1}\\
\mathbf{elif}\;\frac{y}{z} \le -4.3892669407339987 \cdot 10^{-84}:\\
\;\;\;\;x \cdot \frac{y}{z}\\
\mathbf{elif}\;\frac{y}{z} \le 1.0868597561693863 \cdot 10^{-196}:\\
\;\;\;\;{\left(\frac{x \cdot y}{z}\right)}^{1}\\
\mathbf{else}:\\
\;\;\;\;\frac{x}{\sqrt[3]{z} \cdot \sqrt[3]{z}} \cdot \frac{y}{\sqrt[3]{z}}\\
\end{array}double code(double x, double y, double z, double t) {
return (x * (((y / z) * t) / t));
}
double code(double x, double y, double z, double t) {
double temp;
if (((y / z) <= -4.969910642538988e+157)) {
temp = pow(((x * y) / z), 1.0);
} else {
double temp_1;
if (((y / z) <= -4.389266940733999e-84)) {
temp_1 = (x * (y / z));
} else {
double temp_2;
if (((y / z) <= 1.0868597561693863e-196)) {
temp_2 = pow(((x * y) / z), 1.0);
} else {
temp_2 = ((x / (cbrt(z) * cbrt(z))) * (y / cbrt(z)));
}
temp_1 = temp_2;
}
temp = temp_1;
}
return temp;
}



Bits error versus x



Bits error versus y



Bits error versus z



Bits error versus t
Results
if (/ y z) < -4.969910642538988e+157 or -4.389266940733999e-84 < (/ y z) < 1.0868597561693863e-196Initial program 18.9
Simplified9.8
rmApplied add-cube-cbrt10.2
Applied *-un-lft-identity10.2
Applied times-frac10.2
Applied associate-*r*3.1
Simplified3.1
rmApplied pow13.1
Applied pow13.1
Applied pow-prod-down3.1
Simplified2.0
if -4.969910642538988e+157 < (/ y z) < -4.389266940733999e-84Initial program 5.3
Simplified0.2
if 1.0868597561693863e-196 < (/ y z) Initial program 14.2
Simplified5.1
rmApplied add-cube-cbrt6.0
Applied *-un-lft-identity6.0
Applied times-frac6.1
Applied associate-*r*6.5
Simplified6.5
Final simplification3.3
herbie shell --seed 2020053
(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)))