\[\frac{\left(\left(x + y\right) \cdot z + \left(t + y\right) \cdot a\right) - y \cdot b}{\left(x + t\right) + y}
\]
↓
\[\begin{array}{l}
t_1 := \left(z + a\right) - b \cdot \frac{y}{x + y}\\
t_2 := a \cdot \left(y + t\right)\\
t_3 := \frac{\left(t_2 + \left(x + y\right) \cdot z\right) - y \cdot b}{y + \left(x + t\right)}\\
\mathbf{if}\;t_3 \leq -2 \cdot 10^{+194}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t_3 \leq 2 \cdot 10^{+173}:\\
\;\;\;\;\frac{\mathsf{fma}\left(x + y, z, t_2\right) - y \cdot b}{x + \left(y + t\right)}\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
double code(double x, double y, double z, double t, double a, double b) {
return ((((x + y) * z) + ((t + y) * a)) - (y * b)) / ((x + t) + y);
}
↓
double code(double x, double y, double z, double t, double a, double b) {
double t_1 = (z + a) - (b * (y / (x + y)));
double t_2 = a * (y + t);
double t_3 = ((t_2 + ((x + y) * z)) - (y * b)) / (y + (x + t));
double tmp;
if (t_3 <= -2e+194) {
tmp = t_1;
} else if (t_3 <= 2e+173) {
tmp = (fma((x + y), z, t_2) - (y * b)) / (x + (y + t));
} else {
tmp = t_1;
}
return tmp;
}
function code(x, y, z, t, a, b)
return Float64(Float64(Float64(Float64(Float64(x + y) * z) + Float64(Float64(t + y) * a)) - Float64(y * b)) / Float64(Float64(x + t) + y))
end
↓
function code(x, y, z, t, a, b)
t_1 = Float64(Float64(z + a) - Float64(b * Float64(y / Float64(x + y))))
t_2 = Float64(a * Float64(y + t))
t_3 = Float64(Float64(Float64(t_2 + Float64(Float64(x + y) * z)) - Float64(y * b)) / Float64(y + Float64(x + t)))
tmp = 0.0
if (t_3 <= -2e+194)
tmp = t_1;
elseif (t_3 <= 2e+173)
tmp = Float64(Float64(fma(Float64(x + y), z, t_2) - Float64(y * b)) / Float64(x + Float64(y + t)));
else
tmp = t_1;
end
return tmp
end
code[x_, y_, z_, t_, a_, b_] := N[(N[(N[(N[(N[(x + y), $MachinePrecision] * z), $MachinePrecision] + N[(N[(t + y), $MachinePrecision] * a), $MachinePrecision]), $MachinePrecision] - N[(y * b), $MachinePrecision]), $MachinePrecision] / N[(N[(x + t), $MachinePrecision] + y), $MachinePrecision]), $MachinePrecision]
↓
code[x_, y_, z_, t_, a_, b_] := Block[{t$95$1 = N[(N[(z + a), $MachinePrecision] - N[(b * N[(y / N[(x + y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(a * N[(y + t), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$3 = N[(N[(N[(t$95$2 + N[(N[(x + y), $MachinePrecision] * z), $MachinePrecision]), $MachinePrecision] - N[(y * b), $MachinePrecision]), $MachinePrecision] / N[(y + N[(x + t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$3, -2e+194], t$95$1, If[LessEqual[t$95$3, 2e+173], N[(N[(N[(N[(x + y), $MachinePrecision] * z + t$95$2), $MachinePrecision] - N[(y * b), $MachinePrecision]), $MachinePrecision] / N[(x + N[(y + t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]]]]
\frac{\left(\left(x + y\right) \cdot z + \left(t + y\right) \cdot a\right) - y \cdot b}{\left(x + t\right) + y}
↓
\begin{array}{l}
t_1 := \left(z + a\right) - b \cdot \frac{y}{x + y}\\
t_2 := a \cdot \left(y + t\right)\\
t_3 := \frac{\left(t_2 + \left(x + y\right) \cdot z\right) - y \cdot b}{y + \left(x + t\right)}\\
\mathbf{if}\;t_3 \leq -2 \cdot 10^{+194}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t_3 \leq 2 \cdot 10^{+173}:\\
\;\;\;\;\frac{\mathsf{fma}\left(x + y, z, t_2\right) - y \cdot b}{x + \left(y + t\right)}\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}