\[\begin{array}{l}
t_1 := c \cdot i + z \cdot t\\
t_2 := c \cdot i + x \cdot y\\
\mathbf{if}\;a \cdot b \leq -6.2 \cdot 10^{-60}:\\
\;\;\;\;a \cdot b + x \cdot y\\
\mathbf{elif}\;a \cdot b \leq 5 \cdot 10^{-318}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \cdot b \leq 6.5 \cdot 10^{-194}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \cdot b \leq 2.8 \cdot 10^{-50}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \cdot b \leq 0.00047:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;a \cdot b + z \cdot t\\
\end{array}
\]
Alternative 7
Accuracy
64.1%
Cost
1748
\[\begin{array}{l}
t_1 := c \cdot i + x \cdot y\\
\mathbf{if}\;a \cdot b \leq -4.5 \cdot 10^{-61}:\\
\;\;\;\;a \cdot b + x \cdot y\\
\mathbf{elif}\;a \cdot b \leq 5 \cdot 10^{-309}:\\
\;\;\;\;c \cdot i + z \cdot t\\
\mathbf{elif}\;a \cdot b \leq 1.65 \cdot 10^{-226}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \cdot b \leq 8.5 \cdot 10^{-104}:\\
\;\;\;\;x \cdot y + z \cdot t\\
\mathbf{elif}\;a \cdot b \leq 0.13:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;a \cdot b + z \cdot t\\
\end{array}
\]
Alternative 8
Accuracy
58.4%
Cost
1504
\[\begin{array}{l}
t_1 := a \cdot b + z \cdot t\\
t_2 := a \cdot b + x \cdot y\\
t_3 := c \cdot i + z \cdot t\\
\mathbf{if}\;a \leq -6.5 \cdot 10^{+109}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -5.3 \cdot 10^{+87}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -3.6 \cdot 10^{+41}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -82000000000:\\
\;\;\;\;t_3\\
\mathbf{elif}\;a \leq -5.5 \cdot 10^{-55}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq 1.55 \cdot 10^{-156}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;a \leq 1.2 \cdot 10^{-134}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;a \leq 2.6 \cdot 10^{+43}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 9
Accuracy
86.4%
Cost
1224
\[\begin{array}{l}
\mathbf{if}\;c \cdot i \leq -7.6 \cdot 10^{+125}:\\
\;\;\;\;c \cdot i + x \cdot y\\
\mathbf{elif}\;c \cdot i \leq 8.6 \cdot 10^{+50}:\\
\;\;\;\;a \cdot b + \left(x \cdot y + z \cdot t\right)\\
\mathbf{else}:\\
\;\;\;\;c \cdot i + z \cdot t\\
\end{array}
\]
Alternative 10
Accuracy
66.5%
Cost
969
\[\begin{array}{l}
\mathbf{if}\;c \cdot i \leq -4.6 \cdot 10^{+29} \lor \neg \left(c \cdot i \leq 1.32 \cdot 10^{+47}\right):\\
\;\;\;\;a \cdot b + c \cdot i\\
\mathbf{else}:\\
\;\;\;\;a \cdot b + z \cdot t\\
\end{array}
\]
Alternative 11
Accuracy
100.0%
Cost
960
\[c \cdot i + \left(a \cdot b + \left(x \cdot y + z \cdot t\right)\right)
\]
herbie shell --seed 2023147
(FPCore (x y z t a b c i)
:name "Linear.V4:$cdot from linear-1.19.1.3, C"
:precision binary64
(+ (+ (+ (* x y) (* z t)) (* a b)) (* c i)))