\[\begin{array}{l}
t_1 := a \cdot b + z \cdot t\\
t_2 := a \cdot b + x \cdot y\\
t_3 := a \cdot b + c \cdot i\\
\mathbf{if}\;c \cdot i \leq -5.2 \cdot 10^{+168}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;c \cdot i \leq 2.25 \cdot 10^{-259}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;c \cdot i \leq 4 \cdot 10^{-149}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;c \cdot i \leq 1.2 \cdot 10^{-76}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;c \cdot i \leq 1.3 \cdot 10^{+73}:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;t_3\\
\end{array}
\]
Alternative 4
Error
22.4
Cost
1748
\[\begin{array}{l}
t_1 := a \cdot b + z \cdot t\\
t_2 := a \cdot b + x \cdot y\\
\mathbf{if}\;c \cdot i \leq -2.5 \cdot 10^{+111}:\\
\;\;\;\;c \cdot i + z \cdot t\\
\mathbf{elif}\;c \cdot i \leq 2.7 \cdot 10^{-260}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;c \cdot i \leq 3.2 \cdot 10^{-148}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;c \cdot i \leq 6.5 \cdot 10^{-71}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;c \cdot i \leq 3.3 \cdot 10^{+75}:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;a \cdot b + c \cdot i\\
\end{array}
\]
Alternative 5
Error
22.0
Cost
1748
\[\begin{array}{l}
t_1 := a \cdot b + z \cdot t\\
t_2 := a \cdot b + x \cdot y\\
\mathbf{if}\;c \cdot i \leq -2.5 \cdot 10^{+111}:\\
\;\;\;\;c \cdot i + z \cdot t\\
\mathbf{elif}\;c \cdot i \leq 2.1 \cdot 10^{-260}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;c \cdot i \leq 1.3 \cdot 10^{-147}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;c \cdot i \leq 1.6 \cdot 10^{-75}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;c \cdot i \leq 5.4 \cdot 10^{+47}:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;c \cdot i + x \cdot y\\
\end{array}
\]
\[\begin{array}{l}
\mathbf{if}\;c \cdot i \leq -1.02 \cdot 10^{+113} \lor \neg \left(c \cdot i \leq 10^{+62}\right):\\
\;\;\;\;c \cdot i + \left(a \cdot b + x \cdot y\right)\\
\mathbf{else}:\\
\;\;\;\;a \cdot b + \left(x \cdot y + z \cdot t\right)\\
\end{array}
\]
Alternative 10
Error
8.9
Cost
1224
\[\begin{array}{l}
\mathbf{if}\;c \cdot i \leq -1.55 \cdot 10^{+166}:\\
\;\;\;\;c \cdot i + z \cdot t\\
\mathbf{elif}\;c \cdot i \leq 1.1 \cdot 10^{+64}:\\
\;\;\;\;a \cdot b + \left(x \cdot y + z \cdot t\right)\\
\mathbf{else}:\\
\;\;\;\;c \cdot i + x \cdot y\\
\end{array}
\]
Alternative 11
Error
0.0
Cost
960
\[c \cdot i + \left(a \cdot b + \left(x \cdot y + z \cdot t\right)\right)
\]
herbie shell --seed 2023018
(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)))