Average Error: 2.1 → 2.5
Time: 5.1s
Precision: binary64
\[\left(\left(x + y \cdot z\right) + t \cdot a\right) + \left(a \cdot z\right) \cdot b \]
\[\begin{array}{l} \mathbf{if}\;t \leq -8.639794952732343 \cdot 10^{-250}:\\ \;\;\;\;\left(x + \mathsf{fma}\left(a, t, z \cdot y\right)\right) + \left(a \cdot z\right) \cdot b\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(a, t, \mathsf{fma}\left(z, \mathsf{fma}\left(a, b, y\right), x\right)\right)\\ \end{array} \]
\left(\left(x + y \cdot z\right) + t \cdot a\right) + \left(a \cdot z\right) \cdot b
\begin{array}{l}
\mathbf{if}\;t \leq -8.639794952732343 \cdot 10^{-250}:\\
\;\;\;\;\left(x + \mathsf{fma}\left(a, t, z \cdot y\right)\right) + \left(a \cdot z\right) \cdot b\\

\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(a, t, \mathsf{fma}\left(z, \mathsf{fma}\left(a, b, y\right), x\right)\right)\\


\end{array}
(FPCore (x y z t a b)
 :precision binary64
 (+ (+ (+ x (* y z)) (* t a)) (* (* a z) b)))
(FPCore (x y z t a b)
 :precision binary64
 (if (<= t -8.639794952732343e-250)
   (+ (+ x (fma a t (* z y))) (* (* a z) b))
   (fma a t (fma z (fma a b y) x))))
double code(double x, double y, double z, double t, double a, double b) {
	return ((x + (y * z)) + (t * a)) + ((a * z) * b);
}
double code(double x, double y, double z, double t, double a, double b) {
	double tmp;
	if (t <= -8.639794952732343e-250) {
		tmp = (x + fma(a, t, (z * y))) + ((a * z) * b);
	} else {
		tmp = fma(a, t, fma(z, fma(a, b, y), x));
	}
	return tmp;
}

Error

Bits error versus x

Bits error versus y

Bits error versus z

Bits error versus t

Bits error versus a

Bits error versus b

Target

Original2.1
Target0.4
Herbie2.5
\[\begin{array}{l} \mathbf{if}\;z < -11820553527347888000:\\ \;\;\;\;z \cdot \left(b \cdot a + y\right) + \left(x + t \cdot a\right)\\ \mathbf{elif}\;z < 4.7589743188364287 \cdot 10^{-122}:\\ \;\;\;\;\left(b \cdot z + t\right) \cdot a + \left(z \cdot y + x\right)\\ \mathbf{else}:\\ \;\;\;\;z \cdot \left(b \cdot a + y\right) + \left(x + t \cdot a\right)\\ \end{array} \]

Derivation

  1. Split input into 2 regimes
  2. if t < -8.63979495273234295e-250

    1. Initial program 2.0

      \[\left(\left(x + y \cdot z\right) + t \cdot a\right) + \left(a \cdot z\right) \cdot b \]
    2. Applied associate-+l+_binary642.0

      \[\leadsto \color{blue}{\left(x + \left(y \cdot z + t \cdot a\right)\right)} + \left(a \cdot z\right) \cdot b \]
    3. Simplified2.0

      \[\leadsto \left(x + \color{blue}{\mathsf{fma}\left(a, t, z \cdot y\right)}\right) + \left(a \cdot z\right) \cdot b \]

    if -8.63979495273234295e-250 < t

    1. Initial program 2.1

      \[\left(\left(x + y \cdot z\right) + t \cdot a\right) + \left(a \cdot z\right) \cdot b \]
    2. Taylor expanded in x around 0 2.8

      \[\leadsto \color{blue}{y \cdot z + \left(a \cdot t + \left(a \cdot \left(z \cdot b\right) + x\right)\right)} \]
    3. Simplified2.9

      \[\leadsto \color{blue}{\mathsf{fma}\left(a, t, \mathsf{fma}\left(z, \mathsf{fma}\left(a, b, y\right), x\right)\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification2.5

    \[\leadsto \begin{array}{l} \mathbf{if}\;t \leq -8.639794952732343 \cdot 10^{-250}:\\ \;\;\;\;\left(x + \mathsf{fma}\left(a, t, z \cdot y\right)\right) + \left(a \cdot z\right) \cdot b\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(a, t, \mathsf{fma}\left(z, \mathsf{fma}\left(a, b, y\right), x\right)\right)\\ \end{array} \]

Reproduce

herbie shell --seed 2022067 
(FPCore (x y z t a b)
  :name "Graphics.Rasterific.CubicBezier:cachedBezierAt from Rasterific-0.6.1"
  :precision binary64

  :herbie-target
  (if (< z -11820553527347888000.0) (+ (* z (+ (* b a) y)) (+ x (* t a))) (if (< z 4.7589743188364287e-122) (+ (* (+ (* b z) t) a) (+ (* z y) x)) (+ (* z (+ (* b a) y)) (+ x (* t a)))))

  (+ (+ (+ x (* y z)) (* t a)) (* (* a z) b)))