\[\begin{array}{l}
t_1 := x \cdot y + a \cdot b\\
t_2 := a \cdot b + z \cdot t\\
t_3 := a \cdot b + c \cdot i\\
\mathbf{if}\;c \cdot i \leq -8200000:\\
\;\;\;\;t_3\\
\mathbf{elif}\;c \cdot i \leq -1.86 \cdot 10^{-268}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;c \cdot i \leq 1.7 \cdot 10^{-308}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;c \cdot i \leq 3.9 \cdot 10^{-125}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;c \cdot i \leq 7.5 \cdot 10^{-36}:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;t_3\\
\end{array}
\]
Alternative 9
Accuracy
56.8%
Cost
1505
\[\begin{array}{l}
t_1 := x \cdot y + a \cdot b\\
t_2 := c \cdot i + z \cdot t\\
\mathbf{if}\;t \leq -9 \cdot 10^{-84}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t \leq -1 \cdot 10^{-205}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq -5 \cdot 10^{-231}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t \leq 1.3 \cdot 10^{-283}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq 1550:\\
\;\;\;\;a \cdot b + c \cdot i\\
\mathbf{elif}\;t \leq 7 \cdot 10^{+51} \lor \neg \left(t \leq 1.32 \cdot 10^{+90}\right) \land t \leq 4.8 \cdot 10^{+169}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 10
Accuracy
90.1%
Cost
1225
\[\begin{array}{l}
t_1 := x \cdot y + z \cdot t\\
\mathbf{if}\;c \cdot i \leq -82000000 \lor \neg \left(c \cdot i \leq 1.25 \cdot 10^{-23}\right):\\
\;\;\;\;c \cdot i + t_1\\
\mathbf{else}:\\
\;\;\;\;a \cdot b + t_1\\
\end{array}
\]
Alternative 11
Accuracy
90.0%
Cost
1225
\[\begin{array}{l}
\mathbf{if}\;c \cdot i \leq -1300000 \lor \neg \left(c \cdot i \leq 5 \cdot 10^{-37}\right):\\
\;\;\;\;c \cdot i + \left(x \cdot y + a \cdot b\right)\\
\mathbf{else}:\\
\;\;\;\;a \cdot b + \left(x \cdot y + z \cdot t\right)\\
\end{array}
\]
Alternative 12
Accuracy
84.4%
Cost
1224
\[\begin{array}{l}
\mathbf{if}\;c \cdot i \leq -1550000000:\\
\;\;\;\;a \cdot b + c \cdot i\\
\mathbf{elif}\;c \cdot i \leq 12800000000:\\
\;\;\;\;a \cdot b + \left(x \cdot y + z \cdot t\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y + c \cdot i\\
\end{array}
\]
Alternative 13
Accuracy
90.6%
Cost
1224
\[\begin{array}{l}
t_1 := x \cdot y + z \cdot t\\
\mathbf{if}\;c \cdot i \leq -320000:\\
\;\;\;\;c \cdot i + \left(a \cdot b + z \cdot t\right)\\
\mathbf{elif}\;c \cdot i \leq 1.15 \cdot 10^{-23}:\\
\;\;\;\;a \cdot b + t_1\\
\mathbf{else}:\\
\;\;\;\;c \cdot i + t_1\\
\end{array}
\]
herbie shell --seed 2023135
(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)))