\[ \begin{array}{c}[y, z, t] = \mathsf{sort}([y, z, t])\\ \end{array} \]
Math FPCore C Julia Wolfram TeX \[\left(x \cdot 2 - \left(\left(y \cdot 9\right) \cdot z\right) \cdot t\right) + \left(a \cdot 27\right) \cdot b
\]
↓
\[\begin{array}{l}
\mathbf{if}\;z \leq 2.05 \cdot 10^{+58}:\\
\;\;\;\;\mathsf{fma}\left(a, 27 \cdot b, x \cdot 2 - 9 \cdot \left(y \cdot \left(z \cdot t\right)\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(x, 2, \mathsf{fma}\left(t, \left(z \cdot y\right) \cdot -9, b \cdot \left(a \cdot 27\right)\right)\right)\\
\end{array}
\]
(FPCore (x y z t a b)
:precision binary64
(+ (- (* x 2.0) (* (* (* y 9.0) z) t)) (* (* a 27.0) b))) ↓
(FPCore (x y z t a b)
:precision binary64
(if (<= z 2.05e+58)
(fma a (* 27.0 b) (- (* x 2.0) (* 9.0 (* y (* z t)))))
(fma x 2.0 (fma t (* (* z y) -9.0) (* b (* a 27.0)))))) double code(double x, double y, double z, double t, double a, double b) {
return ((x * 2.0) - (((y * 9.0) * z) * t)) + ((a * 27.0) * b);
}
↓
double code(double x, double y, double z, double t, double a, double b) {
double tmp;
if (z <= 2.05e+58) {
tmp = fma(a, (27.0 * b), ((x * 2.0) - (9.0 * (y * (z * t)))));
} else {
tmp = fma(x, 2.0, fma(t, ((z * y) * -9.0), (b * (a * 27.0))));
}
return tmp;
}
function code(x, y, z, t, a, b)
return Float64(Float64(Float64(x * 2.0) - Float64(Float64(Float64(y * 9.0) * z) * t)) + Float64(Float64(a * 27.0) * b))
end
↓
function code(x, y, z, t, a, b)
tmp = 0.0
if (z <= 2.05e+58)
tmp = fma(a, Float64(27.0 * b), Float64(Float64(x * 2.0) - Float64(9.0 * Float64(y * Float64(z * t)))));
else
tmp = fma(x, 2.0, fma(t, Float64(Float64(z * y) * -9.0), Float64(b * Float64(a * 27.0))));
end
return tmp
end
code[x_, y_, z_, t_, a_, b_] := N[(N[(N[(x * 2.0), $MachinePrecision] - N[(N[(N[(y * 9.0), $MachinePrecision] * z), $MachinePrecision] * t), $MachinePrecision]), $MachinePrecision] + N[(N[(a * 27.0), $MachinePrecision] * b), $MachinePrecision]), $MachinePrecision]
↓
code[x_, y_, z_, t_, a_, b_] := If[LessEqual[z, 2.05e+58], N[(a * N[(27.0 * b), $MachinePrecision] + N[(N[(x * 2.0), $MachinePrecision] - N[(9.0 * N[(y * N[(z * t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x * 2.0 + N[(t * N[(N[(z * y), $MachinePrecision] * -9.0), $MachinePrecision] + N[(b * N[(a * 27.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\left(x \cdot 2 - \left(\left(y \cdot 9\right) \cdot z\right) \cdot t\right) + \left(a \cdot 27\right) \cdot b
↓
\begin{array}{l}
\mathbf{if}\;z \leq 2.05 \cdot 10^{+58}:\\
\;\;\;\;\mathsf{fma}\left(a, 27 \cdot b, x \cdot 2 - 9 \cdot \left(y \cdot \left(z \cdot t\right)\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(x, 2, \mathsf{fma}\left(t, \left(z \cdot y\right) \cdot -9, b \cdot \left(a \cdot 27\right)\right)\right)\\
\end{array}
Alternatives Alternative 1 Accuracy 98.4% Cost 7492
\[\begin{array}{l}
\mathbf{if}\;z \leq 1.3 \cdot 10^{+51}:\\
\;\;\;\;\mathsf{fma}\left(a, 27 \cdot b, x \cdot 2 - 9 \cdot \left(y \cdot \left(z \cdot t\right)\right)\right)\\
\mathbf{else}:\\
\;\;\;\;b \cdot \left(a \cdot 27\right) + \left(x \cdot 2 - t \cdot \left(z \cdot \left(9 \cdot y\right)\right)\right)\\
\end{array}
\]
Alternative 2 Accuracy 45.8% Cost 1900
\[\begin{array}{l}
t_1 := t \cdot \left(\left(z \cdot y\right) \cdot -9\right)\\
t_2 := 27 \cdot \left(a \cdot b\right)\\
\mathbf{if}\;b \leq -7 \cdot 10^{-63}:\\
\;\;\;\;a \cdot \left(27 \cdot b\right)\\
\mathbf{elif}\;b \leq -3.5 \cdot 10^{-199}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;b \leq 9 \cdot 10^{-46}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;b \leq 4.2 \cdot 10^{-14}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;b \leq 1.8 \cdot 10^{+42}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;b \leq 1.8 \cdot 10^{+87}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;b \leq 1.25 \cdot 10^{+107}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;b \leq 5.8 \cdot 10^{+115}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;b \leq 4.05 \cdot 10^{+130}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;b \leq 1.6 \cdot 10^{+168}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;b \leq 4.5 \cdot 10^{+196}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;b \cdot \left(a \cdot 27\right)\\
\end{array}
\]
Alternative 3 Accuracy 45.6% Cost 1900
\[\begin{array}{l}
t_1 := t \cdot \left(y \cdot \left(z \cdot -9\right)\right)\\
t_2 := t \cdot \left(\left(z \cdot y\right) \cdot -9\right)\\
t_3 := 27 \cdot \left(a \cdot b\right)\\
\mathbf{if}\;b \leq -1.4 \cdot 10^{-65}:\\
\;\;\;\;a \cdot \left(27 \cdot b\right)\\
\mathbf{elif}\;b \leq -4.2 \cdot 10^{-199}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;b \leq 3.9 \cdot 10^{-46}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;b \leq 4.2 \cdot 10^{-13}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;b \leq 3.8 \cdot 10^{+46}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;b \leq 1.8 \cdot 10^{+87}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;b \leq 1.4 \cdot 10^{+107}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;b \leq 1.4 \cdot 10^{+115}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;b \leq 1.12 \cdot 10^{+134}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;b \leq 1.25 \cdot 10^{+169}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;b \leq 4.5 \cdot 10^{+196}:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;b \cdot \left(a \cdot 27\right)\\
\end{array}
\]
Alternative 4 Accuracy 45.8% Cost 1900
\[\begin{array}{l}
t_1 := t \cdot \left(y \cdot \left(z \cdot -9\right)\right)\\
t_2 := 27 \cdot \left(a \cdot b\right)\\
\mathbf{if}\;b \leq -2.8 \cdot 10^{-66}:\\
\;\;\;\;a \cdot \left(27 \cdot b\right)\\
\mathbf{elif}\;b \leq -4.7 \cdot 10^{-200}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;b \leq 3.6 \cdot 10^{-45}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;b \leq 3.4 \cdot 10^{-12}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;b \leq 1.15 \cdot 10^{+48}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;b \leq 1.75 \cdot 10^{+87}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;b \leq 1.1 \cdot 10^{+107}:\\
\;\;\;\;\left(z \cdot t\right) \cdot \left(y \cdot -9\right)\\
\mathbf{elif}\;b \leq 5.8 \cdot 10^{+115}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;b \leq 3.9 \cdot 10^{+133}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;b \leq 1.25 \cdot 10^{+169}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;b \leq 4.5 \cdot 10^{+196}:\\
\;\;\;\;t \cdot \left(\left(z \cdot y\right) \cdot -9\right)\\
\mathbf{else}:\\
\;\;\;\;b \cdot \left(a \cdot 27\right)\\
\end{array}
\]
Alternative 5 Accuracy 76.7% Cost 1756
\[\begin{array}{l}
t_1 := x \cdot 2 - \left(a \cdot b\right) \cdot -27\\
t_2 := 9 \cdot \left(y \cdot \left(z \cdot t\right)\right)\\
t_3 := 27 \cdot \left(a \cdot b\right) - t_2\\
\mathbf{if}\;z \leq -3 \cdot 10^{-31}:\\
\;\;\;\;x \cdot 2 - t_2\\
\mathbf{elif}\;z \leq -1.4 \cdot 10^{-204}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq -5.2 \cdot 10^{-253}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;z \leq 7.2 \cdot 10^{-152}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 5.4 \cdot 10^{-129}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;z \leq 1.15 \cdot 10^{-73}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 3.6 \cdot 10^{+122}:\\
\;\;\;\;t_3\\
\mathbf{else}:\\
\;\;\;\;t \cdot \left(\left(z \cdot y\right) \cdot -9\right)\\
\end{array}
\]
Alternative 6 Accuracy 97.5% Cost 1476
\[\begin{array}{l}
t_1 := z \cdot \left(9 \cdot y\right)\\
\mathbf{if}\;t_1 \leq 10^{+290}:\\
\;\;\;\;b \cdot \left(a \cdot 27\right) + \left(x \cdot 2 - t \cdot t_1\right)\\
\mathbf{else}:\\
\;\;\;\;27 \cdot \left(a \cdot b\right) - 9 \cdot \left(y \cdot \left(z \cdot t\right)\right)\\
\end{array}
\]
Alternative 7 Accuracy 73.8% Cost 1232
\[\begin{array}{l}
t_1 := x \cdot 2 - 9 \cdot \left(y \cdot \left(z \cdot t\right)\right)\\
t_2 := x \cdot 2 - \left(a \cdot b\right) \cdot -27\\
\mathbf{if}\;b \leq -6.2 \cdot 10^{-164}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;b \leq 7.2 \cdot 10^{+44}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;b \leq 1.25 \cdot 10^{+169}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;b \leq 4.5 \cdot 10^{+196}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;x \cdot 2 - b \cdot \left(a \cdot -27\right)\\
\end{array}
\]
Alternative 8 Accuracy 96.8% Cost 1220
\[\begin{array}{l}
\mathbf{if}\;z \leq -7.5 \cdot 10^{+30}:\\
\;\;\;\;27 \cdot \left(a \cdot b\right) - 9 \cdot \left(y \cdot \left(z \cdot t\right)\right)\\
\mathbf{else}:\\
\;\;\;\;b \cdot \left(a \cdot 27\right) + \left(x \cdot 2 - t \cdot \left(9 \cdot \left(z \cdot y\right)\right)\right)\\
\end{array}
\]
Alternative 9 Accuracy 98.0% Cost 1220
\[\begin{array}{l}
\mathbf{if}\;z \leq 200:\\
\;\;\;\;x \cdot 2 + \left(a \cdot \left(27 \cdot b\right) - \left(9 \cdot y\right) \cdot \left(z \cdot t\right)\right)\\
\mathbf{else}:\\
\;\;\;\;b \cdot \left(a \cdot 27\right) + \left(x \cdot 2 - t \cdot \left(z \cdot \left(9 \cdot y\right)\right)\right)\\
\end{array}
\]
Alternative 10 Accuracy 75.0% Cost 840
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \cdot 10^{-21}:\\
\;\;\;\;-9 \cdot \left(y \cdot \left(z \cdot t\right)\right)\\
\mathbf{elif}\;z \leq 0.1:\\
\;\;\;\;x \cdot 2 - \left(a \cdot b\right) \cdot -27\\
\mathbf{else}:\\
\;\;\;\;t \cdot \left(\left(z \cdot y\right) \cdot -9\right)\\
\end{array}
\]
Alternative 11 Accuracy 45.4% Cost 585
\[\begin{array}{l}
\mathbf{if}\;a \leq -7.5 \cdot 10^{-10} \lor \neg \left(a \leq 1.35 \cdot 10^{-137}\right):\\
\;\;\;\;27 \cdot \left(a \cdot b\right)\\
\mathbf{else}:\\
\;\;\;\;x + x\\
\end{array}
\]
Alternative 12 Accuracy 30.7% Cost 192
\[x + x
\]