x \cdot \left(1 - y \cdot z\right)
\begin{array}{l}
\mathbf{if}\;y \cdot z \le -7.045922148172357582559991056998494780309 \cdot 10^{260}:\\
\;\;\;\;1 \cdot x + \left(y \cdot x\right) \cdot \left(-z\right)\\
\mathbf{elif}\;y \cdot z \le 2.649559227460045009329263142923922493941 \cdot 10^{140}:\\
\;\;\;\;\left(-y \cdot z\right) \cdot x + 1 \cdot x\\
\mathbf{else}:\\
\;\;\;\;1 \cdot x + \left(x \cdot z\right) \cdot \left(-y\right)\\
\end{array}double f(double x, double y, double z) {
double r9850069 = x;
double r9850070 = 1.0;
double r9850071 = y;
double r9850072 = z;
double r9850073 = r9850071 * r9850072;
double r9850074 = r9850070 - r9850073;
double r9850075 = r9850069 * r9850074;
return r9850075;
}
double f(double x, double y, double z) {
double r9850076 = y;
double r9850077 = z;
double r9850078 = r9850076 * r9850077;
double r9850079 = -7.045922148172358e+260;
bool r9850080 = r9850078 <= r9850079;
double r9850081 = 1.0;
double r9850082 = x;
double r9850083 = r9850081 * r9850082;
double r9850084 = r9850076 * r9850082;
double r9850085 = -r9850077;
double r9850086 = r9850084 * r9850085;
double r9850087 = r9850083 + r9850086;
double r9850088 = 2.649559227460045e+140;
bool r9850089 = r9850078 <= r9850088;
double r9850090 = -r9850078;
double r9850091 = r9850090 * r9850082;
double r9850092 = r9850091 + r9850083;
double r9850093 = r9850082 * r9850077;
double r9850094 = -r9850076;
double r9850095 = r9850093 * r9850094;
double r9850096 = r9850083 + r9850095;
double r9850097 = r9850089 ? r9850092 : r9850096;
double r9850098 = r9850080 ? r9850087 : r9850097;
return r9850098;
}



Bits error versus x



Bits error versus y



Bits error versus z
Results
if (* y z) < -7.045922148172358e+260Initial program 39.1
rmApplied sub-neg39.1
Applied distribute-rgt-in39.1
rmApplied distribute-lft-neg-in39.1
Applied associate-*l*0.4
rmApplied add-cube-cbrt1.5
Applied associate-*l*1.5
Taylor expanded around inf 39.1
Simplified0.4
if -7.045922148172358e+260 < (* y z) < 2.649559227460045e+140Initial program 0.1
rmApplied sub-neg0.1
Applied distribute-rgt-in0.1
if 2.649559227460045e+140 < (* y z) Initial program 16.5
rmApplied sub-neg16.5
Applied distribute-rgt-in16.5
rmApplied distribute-lft-neg-in16.5
Applied associate-*l*3.1
Final simplification0.4
herbie shell --seed 2019174 +o rules:numerics
(FPCore (x y z)
:name "Data.Colour.RGBSpace.HSV:hsv from colour-2.3.3, I"
(* x (- 1.0 (* y z))))