\[x \cdot \left(1 - y \cdot z\right)
\]
↓
\[\begin{array}{l}
t_0 := x \cdot \left(1 - y \cdot z\right)\\
\mathbf{if}\;t_0 \leq -\infty:\\
\;\;\;\;\left(x \cdot z\right) \cdot \left(-y\right)\\
\mathbf{elif}\;t_0 \leq 5 \cdot 10^{+304}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\left(-z\right) \cdot \left(x \cdot y\right)\\
\end{array}
\]
(FPCore (x y z) :precision binary64 (* x (- 1.0 (* y z))))
↓
(FPCore (x y z)
:precision binary64
(let* ((t_0 (* x (- 1.0 (* y z)))))
(if (<= t_0 (- INFINITY))
(* (* x z) (- y))
(if (<= t_0 5e+304) t_0 (* (- z) (* x y))))))double code(double x, double y, double z) {
return x * (1.0 - (y * z));
}
↓
double code(double x, double y, double z) {
double t_0 = x * (1.0 - (y * z));
double tmp;
if (t_0 <= -((double) INFINITY)) {
tmp = (x * z) * -y;
} else if (t_0 <= 5e+304) {
tmp = t_0;
} else {
tmp = -z * (x * y);
}
return tmp;
}
public static double code(double x, double y, double z) {
return x * (1.0 - (y * z));
}
↓
public static double code(double x, double y, double z) {
double t_0 = x * (1.0 - (y * z));
double tmp;
if (t_0 <= -Double.POSITIVE_INFINITY) {
tmp = (x * z) * -y;
} else if (t_0 <= 5e+304) {
tmp = t_0;
} else {
tmp = -z * (x * y);
}
return tmp;
}
def code(x, y, z):
return x * (1.0 - (y * z))
↓
def code(x, y, z):
t_0 = x * (1.0 - (y * z))
tmp = 0
if t_0 <= -math.inf:
tmp = (x * z) * -y
elif t_0 <= 5e+304:
tmp = t_0
else:
tmp = -z * (x * y)
return tmp
function code(x, y, z)
return Float64(x * Float64(1.0 - Float64(y * z)))
end
↓
function code(x, y, z)
t_0 = Float64(x * Float64(1.0 - Float64(y * z)))
tmp = 0.0
if (t_0 <= Float64(-Inf))
tmp = Float64(Float64(x * z) * Float64(-y));
elseif (t_0 <= 5e+304)
tmp = t_0;
else
tmp = Float64(Float64(-z) * Float64(x * y));
end
return tmp
end
function tmp = code(x, y, z)
tmp = x * (1.0 - (y * z));
end
↓
function tmp_2 = code(x, y, z)
t_0 = x * (1.0 - (y * z));
tmp = 0.0;
if (t_0 <= -Inf)
tmp = (x * z) * -y;
elseif (t_0 <= 5e+304)
tmp = t_0;
else
tmp = -z * (x * y);
end
tmp_2 = tmp;
end
code[x_, y_, z_] := N[(x * N[(1.0 - N[(y * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
↓
code[x_, y_, z_] := Block[{t$95$0 = N[(x * N[(1.0 - N[(y * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, (-Infinity)], N[(N[(x * z), $MachinePrecision] * (-y)), $MachinePrecision], If[LessEqual[t$95$0, 5e+304], t$95$0, N[((-z) * N[(x * y), $MachinePrecision]), $MachinePrecision]]]]
x \cdot \left(1 - y \cdot z\right)
↓
\begin{array}{l}
t_0 := x \cdot \left(1 - y \cdot z\right)\\
\mathbf{if}\;t_0 \leq -\infty:\\
\;\;\;\;\left(x \cdot z\right) \cdot \left(-y\right)\\
\mathbf{elif}\;t_0 \leq 5 \cdot 10^{+304}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\left(-z\right) \cdot \left(x \cdot y\right)\\
\end{array}