Math FPCore C Fortran Java Python Julia MATLAB Wolfram TeX \[x + \frac{\left(y - z\right) \cdot \left(t - x\right)}{a - z}
\]
↓
\[\begin{array}{l}
t_1 := \frac{z}{y - a}\\
t_2 := \frac{x - t}{t_1}\\
\mathbf{if}\;z \leq -4.6 \cdot 10^{+187}:\\
\;\;\;\;\left(t - \frac{a}{\frac{z}{\frac{t - x}{t_1}}}\right) + t_2\\
\mathbf{elif}\;z \leq 1.25 \cdot 10^{+153}:\\
\;\;\;\;y \cdot \frac{t - x}{a - z} + \left(x + z \cdot \frac{x - t}{a - z}\right)\\
\mathbf{else}:\\
\;\;\;\;t + t_2\\
\end{array}
\]
(FPCore (x y z t a) :precision binary64 (+ x (/ (* (- y z) (- t x)) (- a z)))) ↓
(FPCore (x y z t a)
:precision binary64
(let* ((t_1 (/ z (- y a))) (t_2 (/ (- x t) t_1)))
(if (<= z -4.6e+187)
(+ (- t (/ a (/ z (/ (- t x) t_1)))) t_2)
(if (<= z 1.25e+153)
(+ (* y (/ (- t x) (- a z))) (+ x (* z (/ (- x t) (- a z)))))
(+ t t_2))))) double code(double x, double y, double z, double t, double a) {
return x + (((y - z) * (t - x)) / (a - z));
}
↓
double code(double x, double y, double z, double t, double a) {
double t_1 = z / (y - a);
double t_2 = (x - t) / t_1;
double tmp;
if (z <= -4.6e+187) {
tmp = (t - (a / (z / ((t - x) / t_1)))) + t_2;
} else if (z <= 1.25e+153) {
tmp = (y * ((t - x) / (a - z))) + (x + (z * ((x - t) / (a - z))));
} else {
tmp = t + t_2;
}
return tmp;
}
real(8) function code(x, y, z, t, a)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8), intent (in) :: a
code = x + (((y - z) * (t - x)) / (a - z))
end function
↓
real(8) function code(x, y, z, t, a)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8), intent (in) :: a
real(8) :: t_1
real(8) :: t_2
real(8) :: tmp
t_1 = z / (y - a)
t_2 = (x - t) / t_1
if (z <= (-4.6d+187)) then
tmp = (t - (a / (z / ((t - x) / t_1)))) + t_2
else if (z <= 1.25d+153) then
tmp = (y * ((t - x) / (a - z))) + (x + (z * ((x - t) / (a - z))))
else
tmp = t + t_2
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
return x + (((y - z) * (t - x)) / (a - z));
}
↓
public static double code(double x, double y, double z, double t, double a) {
double t_1 = z / (y - a);
double t_2 = (x - t) / t_1;
double tmp;
if (z <= -4.6e+187) {
tmp = (t - (a / (z / ((t - x) / t_1)))) + t_2;
} else if (z <= 1.25e+153) {
tmp = (y * ((t - x) / (a - z))) + (x + (z * ((x - t) / (a - z))));
} else {
tmp = t + t_2;
}
return tmp;
}
def code(x, y, z, t, a):
return x + (((y - z) * (t - x)) / (a - z))
↓
def code(x, y, z, t, a):
t_1 = z / (y - a)
t_2 = (x - t) / t_1
tmp = 0
if z <= -4.6e+187:
tmp = (t - (a / (z / ((t - x) / t_1)))) + t_2
elif z <= 1.25e+153:
tmp = (y * ((t - x) / (a - z))) + (x + (z * ((x - t) / (a - z))))
else:
tmp = t + t_2
return tmp
function code(x, y, z, t, a)
return Float64(x + Float64(Float64(Float64(y - z) * Float64(t - x)) / Float64(a - z)))
end
↓
function code(x, y, z, t, a)
t_1 = Float64(z / Float64(y - a))
t_2 = Float64(Float64(x - t) / t_1)
tmp = 0.0
if (z <= -4.6e+187)
tmp = Float64(Float64(t - Float64(a / Float64(z / Float64(Float64(t - x) / t_1)))) + t_2);
elseif (z <= 1.25e+153)
tmp = Float64(Float64(y * Float64(Float64(t - x) / Float64(a - z))) + Float64(x + Float64(z * Float64(Float64(x - t) / Float64(a - z)))));
else
tmp = Float64(t + t_2);
end
return tmp
end
function tmp = code(x, y, z, t, a)
tmp = x + (((y - z) * (t - x)) / (a - z));
end
↓
function tmp_2 = code(x, y, z, t, a)
t_1 = z / (y - a);
t_2 = (x - t) / t_1;
tmp = 0.0;
if (z <= -4.6e+187)
tmp = (t - (a / (z / ((t - x) / t_1)))) + t_2;
elseif (z <= 1.25e+153)
tmp = (y * ((t - x) / (a - z))) + (x + (z * ((x - t) / (a - z))));
else
tmp = t + t_2;
end
tmp_2 = tmp;
end
code[x_, y_, z_, t_, a_] := N[(x + N[(N[(N[(y - z), $MachinePrecision] * N[(t - x), $MachinePrecision]), $MachinePrecision] / N[(a - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
↓
code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(z / N[(y - a), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[(x - t), $MachinePrecision] / t$95$1), $MachinePrecision]}, If[LessEqual[z, -4.6e+187], N[(N[(t - N[(a / N[(z / N[(N[(t - x), $MachinePrecision] / t$95$1), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + t$95$2), $MachinePrecision], If[LessEqual[z, 1.25e+153], N[(N[(y * N[(N[(t - x), $MachinePrecision] / N[(a - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(x + N[(z * N[(N[(x - t), $MachinePrecision] / N[(a - z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(t + t$95$2), $MachinePrecision]]]]]
x + \frac{\left(y - z\right) \cdot \left(t - x\right)}{a - z}
↓
\begin{array}{l}
t_1 := \frac{z}{y - a}\\
t_2 := \frac{x - t}{t_1}\\
\mathbf{if}\;z \leq -4.6 \cdot 10^{+187}:\\
\;\;\;\;\left(t - \frac{a}{\frac{z}{\frac{t - x}{t_1}}}\right) + t_2\\
\mathbf{elif}\;z \leq 1.25 \cdot 10^{+153}:\\
\;\;\;\;y \cdot \frac{t - x}{a - z} + \left(x + z \cdot \frac{x - t}{a - z}\right)\\
\mathbf{else}:\\
\;\;\;\;t + t_2\\
\end{array}
Alternatives Alternative 1 Error 10.6% Cost 4432
\[\begin{array}{l}
t_1 := x + \frac{\left(t - x\right) \cdot \left(y - z\right)}{a - z}\\
\mathbf{if}\;t_1 \leq -\infty:\\
\;\;\;\;x + \frac{y - z}{\frac{a - z}{t - x}}\\
\mathbf{elif}\;t_1 \leq -1 \cdot 10^{-200}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t_1 \leq -5 \cdot 10^{-281}:\\
\;\;\;\;x + \frac{t}{\frac{a}{y - z}}\\
\mathbf{elif}\;t_1 \leq 10^{-298}:\\
\;\;\;\;t + \frac{x - t}{\frac{z}{y - a}}\\
\mathbf{else}:\\
\;\;\;\;x + \left(t - x\right) \cdot \frac{y - z}{a - z}\\
\end{array}
\]
Alternative 2 Error 10.61% Cost 4432
\[\begin{array}{l}
t_1 := x + \frac{\left(t - x\right) \cdot \left(y - z\right)}{a - z}\\
\mathbf{if}\;t_1 \leq -\infty:\\
\;\;\;\;x - \frac{z - y}{\left(a - z\right) \cdot \frac{1}{t - x}}\\
\mathbf{elif}\;t_1 \leq -1 \cdot 10^{-200}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t_1 \leq -5 \cdot 10^{-281}:\\
\;\;\;\;x + \frac{t}{\frac{a}{y - z}}\\
\mathbf{elif}\;t_1 \leq 10^{-298}:\\
\;\;\;\;t + \frac{x - t}{\frac{z}{y - a}}\\
\mathbf{else}:\\
\;\;\;\;x + \left(t - x\right) \cdot \frac{y - z}{a - z}\\
\end{array}
\]
Alternative 3 Error 13.09% Cost 1609
\[\begin{array}{l}
\mathbf{if}\;z \leq -3.4 \cdot 10^{+188} \lor \neg \left(z \leq 1.4 \cdot 10^{+153}\right):\\
\;\;\;\;t + \frac{x - t}{\frac{z}{y - a}}\\
\mathbf{else}:\\
\;\;\;\;y \cdot \frac{t - x}{a - z} + \left(x + z \cdot \frac{x - t}{a - z}\right)\\
\end{array}
\]
Alternative 4 Error 36.48% Cost 1500
\[\begin{array}{l}
t_1 := t \cdot \frac{y - z}{a - z}\\
t_2 := x + \frac{t}{\frac{a}{y - z}}\\
\mathbf{if}\;a \leq -8.6 \cdot 10^{+60}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -5.8 \cdot 10^{+18}:\\
\;\;\;\;x \cdot \left(1 + \frac{z - y}{a - z}\right)\\
\mathbf{elif}\;a \leq -1.75 \cdot 10^{-125}:\\
\;\;\;\;\frac{t}{\frac{a - z}{y - z}}\\
\mathbf{elif}\;a \leq -7.4 \cdot 10^{-168}:\\
\;\;\;\;y \cdot \frac{t - x}{a - z}\\
\mathbf{elif}\;a \leq -1.7 \cdot 10^{-253}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -2.6 \cdot 10^{-300}:\\
\;\;\;\;\frac{y}{\frac{a - z}{t - x}}\\
\mathbf{elif}\;a \leq 3 \cdot 10^{+134}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 5 Error 33.45% Cost 1496
\[\begin{array}{l}
t_1 := t \cdot \frac{y - z}{a - z}\\
t_2 := x + \left(t - x\right) \cdot \frac{y - z}{a}\\
\mathbf{if}\;a \leq -6 \cdot 10^{+18}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -2.8 \cdot 10^{-125}:\\
\;\;\;\;\frac{t}{\frac{a - z}{y - z}}\\
\mathbf{elif}\;a \leq -3.5 \cdot 10^{-167}:\\
\;\;\;\;y \cdot \frac{t - x}{a - z}\\
\mathbf{elif}\;a \leq -2 \cdot 10^{-254}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -2.75 \cdot 10^{-300}:\\
\;\;\;\;\frac{y}{\frac{a - z}{t - x}}\\
\mathbf{elif}\;a \leq 6.4 \cdot 10^{-52}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 6 Error 49.51% Cost 1372
\[\begin{array}{l}
t_1 := \frac{t}{\frac{z - a}{z}}\\
t_2 := x + t \cdot \frac{y}{a}\\
\mathbf{if}\;a \leq -6 \cdot 10^{+18}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -6.6 \cdot 10^{-255}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -2.6 \cdot 10^{-301}:\\
\;\;\;\;\frac{y}{\frac{z}{x}}\\
\mathbf{elif}\;a \leq 5.7 \cdot 10^{-11}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq 2.3 \cdot 10^{+70}:\\
\;\;\;\;x + \frac{t \cdot y}{a}\\
\mathbf{elif}\;a \leq 1.15 \cdot 10^{+136}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq 6 \cdot 10^{+220}:\\
\;\;\;\;x - x \cdot \frac{y}{a}\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 7 Error 50.74% Cost 1372
\[\begin{array}{l}
t_1 := \frac{t}{\frac{z - a}{z}}\\
t_2 := x + t \cdot \frac{y}{a}\\
\mathbf{if}\;a \leq -5.2 \cdot 10^{+18}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -7 \cdot 10^{-255}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -5.4 \cdot 10^{-300}:\\
\;\;\;\;\frac{y}{\frac{z}{x}}\\
\mathbf{elif}\;a \leq 4.1 \cdot 10^{-56}:\\
\;\;\;\;\frac{t \cdot \left(z - y\right)}{z}\\
\mathbf{elif}\;a \leq 2.6 \cdot 10^{+70}:\\
\;\;\;\;x + \frac{t \cdot y}{a}\\
\mathbf{elif}\;a \leq 1.1 \cdot 10^{+136}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq 6.2 \cdot 10^{+220}:\\
\;\;\;\;x - x \cdot \frac{y}{a}\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 8 Error 40.42% Cost 1368
\[\begin{array}{l}
t_1 := t \cdot \frac{y - z}{a - z}\\
t_2 := x + t \cdot \frac{y}{a}\\
t_3 := y \cdot \frac{t - x}{a - z}\\
\mathbf{if}\;a \leq -6 \cdot 10^{+18}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -9.2 \cdot 10^{-122}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -6.1 \cdot 10^{-168}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;a \leq -1.8 \cdot 10^{-254}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -5 \cdot 10^{-307}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;a \leq 1.15 \cdot 10^{+136}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 9 Error 38.22% Cost 1368
\[\begin{array}{l}
t_1 := t \cdot \frac{y - z}{a - z}\\
t_2 := x + y \cdot \frac{t - x}{a}\\
t_3 := y \cdot \frac{t - x}{a - z}\\
\mathbf{if}\;a \leq -6.2 \cdot 10^{+18}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -1.46 \cdot 10^{-124}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -2 \cdot 10^{-167}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;a \leq -7.5 \cdot 10^{-255}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -5.4 \cdot 10^{-300}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;a \leq 1.65 \cdot 10^{+136}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 10 Error 37.92% Cost 1368
\[\begin{array}{l}
t_1 := t \cdot \frac{y - z}{a - z}\\
t_2 := y \cdot \frac{t - x}{a - z}\\
\mathbf{if}\;a \leq -5 \cdot 10^{+18}:\\
\;\;\;\;x + y \cdot \frac{t - x}{a}\\
\mathbf{elif}\;a \leq -1.75 \cdot 10^{-125}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -2.5 \cdot 10^{-167}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -7 \cdot 10^{-254}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -1.05 \cdot 10^{-300}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq 9 \cdot 10^{+135}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;x - \frac{x - t}{\frac{a}{y}}\\
\end{array}
\]
Alternative 11 Error 36.43% Cost 1368
\[\begin{array}{l}
t_1 := t \cdot \frac{y - z}{a - z}\\
t_2 := x + \frac{t}{\frac{a}{y - z}}\\
t_3 := y \cdot \frac{t - x}{a - z}\\
\mathbf{if}\;a \leq -6.2 \cdot 10^{+18}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -2.05 \cdot 10^{-125}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -1.1 \cdot 10^{-167}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;a \leq -9 \cdot 10^{-255}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -1.25 \cdot 10^{-304}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;a \leq 1.75 \cdot 10^{+134}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 12 Error 36.4% Cost 1368
\[\begin{array}{l}
t_1 := t \cdot \frac{y - z}{a - z}\\
t_2 := x + \frac{t}{\frac{a}{y - z}}\\
t_3 := y \cdot \frac{t - x}{a - z}\\
\mathbf{if}\;a \leq -6 \cdot 10^{+18}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -1.1 \cdot 10^{-124}:\\
\;\;\;\;\frac{t}{\frac{a - z}{y - z}}\\
\mathbf{elif}\;a \leq -3.6 \cdot 10^{-167}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;a \leq -4.5 \cdot 10^{-255}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -3.8 \cdot 10^{-300}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;a \leq 1.75 \cdot 10^{+134}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 13 Error 36.64% Cost 1368
\[\begin{array}{l}
t_1 := t \cdot \frac{y - z}{a - z}\\
t_2 := x + \frac{t}{\frac{a}{y - z}}\\
\mathbf{if}\;a \leq -5.8 \cdot 10^{+18}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -3.9 \cdot 10^{-122}:\\
\;\;\;\;\frac{t}{\frac{a - z}{y - z}}\\
\mathbf{elif}\;a \leq -2.1 \cdot 10^{-168}:\\
\;\;\;\;y \cdot \frac{t - x}{a - z}\\
\mathbf{elif}\;a \leq -1.55 \cdot 10^{-252}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -1.5 \cdot 10^{-307}:\\
\;\;\;\;\frac{y}{\frac{a - z}{t - x}}\\
\mathbf{elif}\;a \leq 1.75 \cdot 10^{+134}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 14 Error 12.13% Cost 1097
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.9 \cdot 10^{+96} \lor \neg \left(z \leq 2.1 \cdot 10^{+153}\right):\\
\;\;\;\;t + \frac{x - t}{\frac{z}{y - a}}\\
\mathbf{else}:\\
\;\;\;\;x + \left(t - x\right) \cdot \frac{y - z}{a - z}\\
\end{array}
\]
Alternative 15 Error 48.68% Cost 976
\[\begin{array}{l}
t_1 := x + t \cdot \frac{y}{a}\\
\mathbf{if}\;a \leq -5 \cdot 10^{+18}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -4.8 \cdot 10^{-255}:\\
\;\;\;\;t\\
\mathbf{elif}\;a \leq -3.1 \cdot 10^{-301}:\\
\;\;\;\;\frac{y}{\frac{z}{x}}\\
\mathbf{elif}\;a \leq 7.8 \cdot 10^{-53}:\\
\;\;\;\;t\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
Alternative 16 Error 28.31% Cost 969
\[\begin{array}{l}
\mathbf{if}\;a \leq -1.95 \cdot 10^{+23} \lor \neg \left(a \leq 10^{-58}\right):\\
\;\;\;\;x + \left(t - x\right) \cdot \frac{y - z}{a}\\
\mathbf{else}:\\
\;\;\;\;t + \frac{\left(t - x\right) \cdot \left(a - y\right)}{z}\\
\end{array}
\]
Alternative 17 Error 24.76% Cost 969
\[\begin{array}{l}
\mathbf{if}\;a \leq -1.32 \cdot 10^{+20} \lor \neg \left(a \leq 2.7 \cdot 10^{-49}\right):\\
\;\;\;\;x + \left(t - x\right) \cdot \frac{y - z}{a}\\
\mathbf{else}:\\
\;\;\;\;t + \frac{x - t}{\frac{z}{y - a}}\\
\end{array}
\]
Alternative 18 Error 39.27% Cost 841
\[\begin{array}{l}
\mathbf{if}\;z \leq -4 \cdot 10^{-37} \lor \neg \left(z \leq 6.5 \cdot 10^{-24}\right):\\
\;\;\;\;t \cdot \frac{y - z}{a - z}\\
\mathbf{else}:\\
\;\;\;\;x + \frac{t \cdot y}{a}\\
\end{array}
\]
Alternative 19 Error 43.39% Cost 777
\[\begin{array}{l}
\mathbf{if}\;a \leq -5.2 \cdot 10^{+18} \lor \neg \left(a \leq 2.5 \cdot 10^{-46}\right):\\
\;\;\;\;x + t \cdot \frac{y}{a}\\
\mathbf{else}:\\
\;\;\;\;\frac{t}{-\frac{z}{y - z}}\\
\end{array}
\]
Alternative 20 Error 56.99% Cost 716
\[\begin{array}{l}
\mathbf{if}\;a \leq -4.8 \cdot 10^{+18}:\\
\;\;\;\;x\\
\mathbf{elif}\;a \leq -1.3 \cdot 10^{-254}:\\
\;\;\;\;t\\
\mathbf{elif}\;a \leq -1.55 \cdot 10^{-303}:\\
\;\;\;\;x \cdot \frac{y}{z}\\
\mathbf{elif}\;a \leq 9 \cdot 10^{+135}:\\
\;\;\;\;t\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
Alternative 21 Error 57.12% Cost 716
\[\begin{array}{l}
\mathbf{if}\;a \leq -5.2 \cdot 10^{+18}:\\
\;\;\;\;x\\
\mathbf{elif}\;a \leq -1.4 \cdot 10^{-252}:\\
\;\;\;\;t\\
\mathbf{elif}\;a \leq -2 \cdot 10^{-305}:\\
\;\;\;\;y \cdot \frac{x}{z}\\
\mathbf{elif}\;a \leq 9 \cdot 10^{+135}:\\
\;\;\;\;t\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
Alternative 22 Error 56.99% Cost 716
\[\begin{array}{l}
\mathbf{if}\;a \leq -5.8 \cdot 10^{+18}:\\
\;\;\;\;x\\
\mathbf{elif}\;a \leq -8.5 \cdot 10^{-254}:\\
\;\;\;\;t\\
\mathbf{elif}\;a \leq -5.4 \cdot 10^{-300}:\\
\;\;\;\;\frac{y}{\frac{z}{x}}\\
\mathbf{elif}\;a \leq 9 \cdot 10^{+135}:\\
\;\;\;\;t\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
Alternative 23 Error 56.01% Cost 328
\[\begin{array}{l}
\mathbf{if}\;z \leq -9.5 \cdot 10^{+21}:\\
\;\;\;\;t\\
\mathbf{elif}\;z \leq 7.2 \cdot 10^{-9}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t\\
\end{array}
\]
Alternative 24 Error 71.47% Cost 64
\[t
\]