?

Average Accuracy: 100.0% → 100.0%
Time: 6.1s
Precision: binary64
Cost: 13248

?

\[\left(x \cdot y + z \cdot t\right) + a \cdot b \]
\[\mathsf{fma}\left(x, y, \mathsf{fma}\left(z, t, a \cdot b\right)\right) \]
(FPCore (x y z t a b) :precision binary64 (+ (+ (* x y) (* z t)) (* a b)))
(FPCore (x y z t a b) :precision binary64 (fma x y (fma z t (* a b))))
double code(double x, double y, double z, double t, double a, double b) {
	return ((x * y) + (z * t)) + (a * b);
}
double code(double x, double y, double z, double t, double a, double b) {
	return fma(x, y, fma(z, t, (a * b)));
}
function code(x, y, z, t, a, b)
	return Float64(Float64(Float64(x * y) + Float64(z * t)) + Float64(a * b))
end
function code(x, y, z, t, a, b)
	return fma(x, y, fma(z, t, Float64(a * b)))
end
code[x_, y_, z_, t_, a_, b_] := N[(N[(N[(x * y), $MachinePrecision] + N[(z * t), $MachinePrecision]), $MachinePrecision] + N[(a * b), $MachinePrecision]), $MachinePrecision]
code[x_, y_, z_, t_, a_, b_] := N[(x * y + N[(z * t + N[(a * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\left(x \cdot y + z \cdot t\right) + a \cdot b
\mathsf{fma}\left(x, y, \mathsf{fma}\left(z, t, a \cdot b\right)\right)

Error?

Derivation?

  1. Initial program 100.0%

    \[\left(x \cdot y + z \cdot t\right) + a \cdot b \]
  2. Simplified100.0%

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

    [Start]100.0

    \[ \left(x \cdot y + z \cdot t\right) + a \cdot b \]

    associate-+l+ [=>]100.0

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

    fma-def [=>]100.0

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

    fma-def [=>]100.0

    \[ \mathsf{fma}\left(x, y, \color{blue}{\mathsf{fma}\left(z, t, a \cdot b\right)}\right) \]
  3. Final simplification100.0%

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

Alternatives

Alternative 1
Accuracy100.0%
Cost6976
\[a \cdot b + \mathsf{fma}\left(x, y, z \cdot t\right) \]
Alternative 2
Accuracy52.3%
Cost2012
\[\begin{array}{l} \mathbf{if}\;a \cdot b \leq -2.5 \cdot 10^{+63}:\\ \;\;\;\;a \cdot b\\ \mathbf{elif}\;a \cdot b \leq -2.2 \cdot 10^{-111}:\\ \;\;\;\;z \cdot t\\ \mathbf{elif}\;a \cdot b \leq 5.5 \cdot 10^{-231}:\\ \;\;\;\;x \cdot y\\ \mathbf{elif}\;a \cdot b \leq 2.5 \cdot 10^{-114}:\\ \;\;\;\;z \cdot t\\ \mathbf{elif}\;a \cdot b \leq 1.25 \cdot 10^{-58}:\\ \;\;\;\;x \cdot y\\ \mathbf{elif}\;a \cdot b \leq 1.6 \cdot 10^{-5}:\\ \;\;\;\;z \cdot t\\ \mathbf{elif}\;a \cdot b \leq 3.65 \cdot 10^{+39}:\\ \;\;\;\;x \cdot y\\ \mathbf{else}:\\ \;\;\;\;a \cdot b\\ \end{array} \]
Alternative 3
Accuracy62.8%
Cost1508
\[\begin{array}{l} \mathbf{if}\;z \leq -4.5 \cdot 10^{+41} \lor \neg \left(z \leq -2.9 \cdot 10^{+25} \lor \neg \left(z \leq -7.8 \cdot 10^{-24}\right) \land \left(z \leq -1.7 \cdot 10^{-44} \lor \neg \left(z \leq -4.3 \cdot 10^{-63}\right) \land \left(z \leq -2.65 \cdot 10^{-104} \lor \neg \left(z \leq -1.1 \cdot 10^{-140}\right) \land z \leq 4 \cdot 10^{-246}\right)\right)\right):\\ \;\;\;\;a \cdot b + z \cdot t\\ \mathbf{else}:\\ \;\;\;\;x \cdot y\\ \end{array} \]
Alternative 4
Accuracy85.0%
Cost968
\[\begin{array}{l} \mathbf{if}\;a \cdot b \leq -3.2 \cdot 10^{-47}:\\ \;\;\;\;a \cdot b + z \cdot t\\ \mathbf{elif}\;a \cdot b \leq 1.4 \cdot 10^{-9}:\\ \;\;\;\;z \cdot t + x \cdot y\\ \mathbf{else}:\\ \;\;\;\;a \cdot b + x \cdot y\\ \end{array} \]
Alternative 5
Accuracy76.6%
Cost713
\[\begin{array}{l} \mathbf{if}\;t \leq -5.6 \cdot 10^{-151} \lor \neg \left(t \leq 8.6 \cdot 10^{+36}\right):\\ \;\;\;\;a \cdot b + z \cdot t\\ \mathbf{else}:\\ \;\;\;\;a \cdot b + x \cdot y\\ \end{array} \]
Alternative 6
Accuracy53.4%
Cost712
\[\begin{array}{l} \mathbf{if}\;a \cdot b \leq -2.4 \cdot 10^{+63}:\\ \;\;\;\;a \cdot b\\ \mathbf{elif}\;a \cdot b \leq 1.42 \cdot 10^{-7}:\\ \;\;\;\;z \cdot t\\ \mathbf{else}:\\ \;\;\;\;a \cdot b\\ \end{array} \]
Alternative 7
Accuracy100.0%
Cost704
\[a \cdot b + \left(z \cdot t + x \cdot y\right) \]
Alternative 8
Accuracy34.4%
Cost192
\[a \cdot b \]

Error

Reproduce?

herbie shell --seed 2023151 
(FPCore (x y z t a b)
  :name "Linear.V3:$cdot from linear-1.19.1.3, B"
  :precision binary64
  (+ (+ (* x y) (* z t)) (* a b)))