x \cdot \frac{\frac{y}{z} \cdot t}{t}\begin{array}{l}
\mathbf{if}\;y \le -2.399464687274639 \cdot 10^{+92}:\\
\;\;\;\;\frac{x}{\frac{z}{y}}\\
\mathbf{elif}\;y \le 3.0447027671553217 \cdot 10^{-120}:\\
\;\;\;\;\frac{y}{\frac{z}{x}}\\
\mathbf{else}:\\
\;\;\;\;\frac{x \cdot y}{z}\\
\end{array}double f(double x, double y, double z, double t) {
double r22340305 = x;
double r22340306 = y;
double r22340307 = z;
double r22340308 = r22340306 / r22340307;
double r22340309 = t;
double r22340310 = r22340308 * r22340309;
double r22340311 = r22340310 / r22340309;
double r22340312 = r22340305 * r22340311;
return r22340312;
}
double f(double x, double y, double z, double __attribute__((unused)) t) {
double r22340313 = y;
double r22340314 = -2.399464687274639e+92;
bool r22340315 = r22340313 <= r22340314;
double r22340316 = x;
double r22340317 = z;
double r22340318 = r22340317 / r22340313;
double r22340319 = r22340316 / r22340318;
double r22340320 = 3.0447027671553217e-120;
bool r22340321 = r22340313 <= r22340320;
double r22340322 = r22340317 / r22340316;
double r22340323 = r22340313 / r22340322;
double r22340324 = r22340316 * r22340313;
double r22340325 = r22340324 / r22340317;
double r22340326 = r22340321 ? r22340323 : r22340325;
double r22340327 = r22340315 ? r22340319 : r22340326;
return r22340327;
}



Bits error versus x



Bits error versus y



Bits error versus z



Bits error versus t
Results
if y < -2.399464687274639e+92Initial program 19.2
Simplified9.9
rmApplied *-un-lft-identity9.9
Applied add-cube-cbrt10.8
Applied times-frac10.8
Applied associate-*r*7.7
Taylor expanded around 0 8.8
rmApplied associate-/l*9.5
if -2.399464687274639e+92 < y < 3.0447027671553217e-120Initial program 12.1
Simplified5.2
rmApplied *-un-lft-identity5.2
Applied add-cube-cbrt6.0
Applied times-frac6.0
Applied associate-*r*5.2
rmApplied associate-*r/5.2
Applied associate-*l/5.2
Simplified5.0
if 3.0447027671553217e-120 < y Initial program 14.4
Simplified5.1
rmApplied *-un-lft-identity5.1
Applied add-cube-cbrt6.0
Applied times-frac6.0
Applied associate-*r*5.5
Taylor expanded around 0 5.8
Final simplification5.9
herbie shell --seed 2019120
(FPCore (x y z t)
:name "Graphics.Rendering.Chart.Backend.Diagrams:calcFontMetrics from Chart-diagrams-1.5.1"
(* x (/ (* (/ y z) t) t)))