x \cdot \frac{\frac{y}{z} \cdot t}{t}\begin{array}{l}
\mathbf{if}\;\frac{y}{z} = -\infty:\\
\;\;\;\;y \cdot \frac{x}{z}\\
\mathbf{elif}\;\frac{y}{z} \le -1.777824700739059504027072604237357294271 \cdot 10^{-189}:\\
\;\;\;\;\frac{y}{z} \cdot x\\
\mathbf{elif}\;\frac{y}{z} \le 6.194701076531514820787324531303599279908 \cdot 10^{-141}:\\
\;\;\;\;\frac{x \cdot y}{z}\\
\mathbf{elif}\;\frac{y}{z} \le 4.487328446405641062208224523193589026226 \cdot 10^{149}:\\
\;\;\;\;\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 r68775 = x;
double r68776 = y;
double r68777 = z;
double r68778 = r68776 / r68777;
double r68779 = t;
double r68780 = r68778 * r68779;
double r68781 = r68780 / r68779;
double r68782 = r68775 * r68781;
return r68782;
}
double f(double x, double y, double z, double __attribute__((unused)) t) {
double r68783 = y;
double r68784 = z;
double r68785 = r68783 / r68784;
double r68786 = -inf.0;
bool r68787 = r68785 <= r68786;
double r68788 = x;
double r68789 = r68788 / r68784;
double r68790 = r68783 * r68789;
double r68791 = -1.7778247007390595e-189;
bool r68792 = r68785 <= r68791;
double r68793 = r68785 * r68788;
double r68794 = 6.194701076531515e-141;
bool r68795 = r68785 <= r68794;
double r68796 = r68788 * r68783;
double r68797 = r68796 / r68784;
double r68798 = 4.487328446405641e+149;
bool r68799 = r68785 <= r68798;
double r68800 = r68799 ? r68793 : r68790;
double r68801 = r68795 ? r68797 : r68800;
double r68802 = r68792 ? r68793 : r68801;
double r68803 = r68787 ? r68790 : r68802;
return r68803;
}



Bits error versus x



Bits error versus y



Bits error versus z



Bits error versus t
Results
if (/ y z) < -inf.0 or 4.487328446405641e+149 < (/ y z) Initial program 41.5
Simplified29.8
rmApplied div-inv29.9
Applied associate-*l*1.9
Simplified1.8
if -inf.0 < (/ y z) < -1.7778247007390595e-189 or 6.194701076531515e-141 < (/ y z) < 4.487328446405641e+149Initial program 7.9
Simplified0.2
if -1.7778247007390595e-189 < (/ y z) < 6.194701076531515e-141Initial program 17.3
Simplified9.0
rmApplied add-cube-cbrt9.5
Applied associate-*l*9.5
rmApplied div-inv9.4
Applied cbrt-prod9.4
rmApplied cbrt-div9.4
Applied associate-*r/9.4
Applied associate-*l/9.6
Applied cbrt-div9.6
Applied cbrt-div1.8
Applied frac-times1.8
Applied frac-times2.1
Simplified1.8
Simplified1.3
Final simplification0.8
herbie shell --seed 2019325
(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)))