
(FPCore (x y z t a) :precision binary64 (+ x (* y (/ (- z t) (- z a)))))
double code(double x, double y, double z, double t, double a) {
return x + (y * ((z - t) / (z - a)));
}
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) / (z - a)))
end function
public static double code(double x, double y, double z, double t, double a) {
return x + (y * ((z - t) / (z - a)));
}
def code(x, y, z, t, a): return x + (y * ((z - t) / (z - a)))
function code(x, y, z, t, a) return Float64(x + Float64(y * Float64(Float64(z - t) / Float64(z - a)))) end
function tmp = code(x, y, z, t, a) tmp = x + (y * ((z - t) / (z - a))); end
code[x_, y_, z_, t_, a_] := N[(x + N[(y * N[(N[(z - t), $MachinePrecision] / N[(z - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x + y \cdot \frac{z - t}{z - a}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 13 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y z t a) :precision binary64 (+ x (* y (/ (- z t) (- z a)))))
double code(double x, double y, double z, double t, double a) {
return x + (y * ((z - t) / (z - a)));
}
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) / (z - a)))
end function
public static double code(double x, double y, double z, double t, double a) {
return x + (y * ((z - t) / (z - a)));
}
def code(x, y, z, t, a): return x + (y * ((z - t) / (z - a)))
function code(x, y, z, t, a) return Float64(x + Float64(y * Float64(Float64(z - t) / Float64(z - a)))) end
function tmp = code(x, y, z, t, a) tmp = x + (y * ((z - t) / (z - a))); end
code[x_, y_, z_, t_, a_] := N[(x + N[(y * N[(N[(z - t), $MachinePrecision] / N[(z - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x + y \cdot \frac{z - t}{z - a}
\end{array}
(FPCore (x y z t a) :precision binary64 (+ x (* y (/ (- z t) (- z a)))))
double code(double x, double y, double z, double t, double a) {
return x + (y * ((z - t) / (z - a)));
}
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) / (z - a)))
end function
public static double code(double x, double y, double z, double t, double a) {
return x + (y * ((z - t) / (z - a)));
}
def code(x, y, z, t, a): return x + (y * ((z - t) / (z - a)))
function code(x, y, z, t, a) return Float64(x + Float64(y * Float64(Float64(z - t) / Float64(z - a)))) end
function tmp = code(x, y, z, t, a) tmp = x + (y * ((z - t) / (z - a))); end
code[x_, y_, z_, t_, a_] := N[(x + N[(y * N[(N[(z - t), $MachinePrecision] / N[(z - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x + y \cdot \frac{z - t}{z - a}
\end{array}
Initial program 97.6%
Final simplification97.6%
(FPCore (x y z t a)
:precision binary64
(let* ((t_1 (+ x (* y (/ z (- z a))))))
(if (<= z -270000000.0)
t_1
(if (<= z -8e-40)
(- x (/ t (/ z y)))
(if (<= z -4.8e-73)
(- x (* t (/ y a)))
(if (<= z 1.6e-90) (+ x (/ y (/ a t))) t_1))))))
double code(double x, double y, double z, double t, double a) {
double t_1 = x + (y * (z / (z - a)));
double tmp;
if (z <= -270000000.0) {
tmp = t_1;
} else if (z <= -8e-40) {
tmp = x - (t / (z / y));
} else if (z <= -4.8e-73) {
tmp = x - (t * (y / a));
} else if (z <= 1.6e-90) {
tmp = x + (y / (a / t));
} else {
tmp = t_1;
}
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
real(8) :: t_1
real(8) :: tmp
t_1 = x + (y * (z / (z - a)))
if (z <= (-270000000.0d0)) then
tmp = t_1
else if (z <= (-8d-40)) then
tmp = x - (t / (z / y))
else if (z <= (-4.8d-73)) then
tmp = x - (t * (y / a))
else if (z <= 1.6d-90) then
tmp = x + (y / (a / t))
else
tmp = t_1
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double t_1 = x + (y * (z / (z - a)));
double tmp;
if (z <= -270000000.0) {
tmp = t_1;
} else if (z <= -8e-40) {
tmp = x - (t / (z / y));
} else if (z <= -4.8e-73) {
tmp = x - (t * (y / a));
} else if (z <= 1.6e-90) {
tmp = x + (y / (a / t));
} else {
tmp = t_1;
}
return tmp;
}
def code(x, y, z, t, a): t_1 = x + (y * (z / (z - a))) tmp = 0 if z <= -270000000.0: tmp = t_1 elif z <= -8e-40: tmp = x - (t / (z / y)) elif z <= -4.8e-73: tmp = x - (t * (y / a)) elif z <= 1.6e-90: tmp = x + (y / (a / t)) else: tmp = t_1 return tmp
function code(x, y, z, t, a) t_1 = Float64(x + Float64(y * Float64(z / Float64(z - a)))) tmp = 0.0 if (z <= -270000000.0) tmp = t_1; elseif (z <= -8e-40) tmp = Float64(x - Float64(t / Float64(z / y))); elseif (z <= -4.8e-73) tmp = Float64(x - Float64(t * Float64(y / a))); elseif (z <= 1.6e-90) tmp = Float64(x + Float64(y / Float64(a / t))); else tmp = t_1; end return tmp end
function tmp_2 = code(x, y, z, t, a) t_1 = x + (y * (z / (z - a))); tmp = 0.0; if (z <= -270000000.0) tmp = t_1; elseif (z <= -8e-40) tmp = x - (t / (z / y)); elseif (z <= -4.8e-73) tmp = x - (t * (y / a)); elseif (z <= 1.6e-90) tmp = x + (y / (a / t)); else tmp = t_1; end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(x + N[(y * N[(z / N[(z - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -270000000.0], t$95$1, If[LessEqual[z, -8e-40], N[(x - N[(t / N[(z / y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, -4.8e-73], N[(x - N[(t * N[(y / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 1.6e-90], N[(x + N[(y / N[(a / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := x + y \cdot \frac{z}{z - a}\\
\mathbf{if}\;z \leq -270000000:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;z \leq -8 \cdot 10^{-40}:\\
\;\;\;\;x - \frac{t}{\frac{z}{y}}\\
\mathbf{elif}\;z \leq -4.8 \cdot 10^{-73}:\\
\;\;\;\;x - t \cdot \frac{y}{a}\\
\mathbf{elif}\;z \leq 1.6 \cdot 10^{-90}:\\
\;\;\;\;x + \frac{y}{\frac{a}{t}}\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if z < -2.7e8 or 1.60000000000000004e-90 < z Initial program 98.5%
Taylor expanded in t around 0 83.0%
if -2.7e8 < z < -7.9999999999999994e-40Initial program 99.9%
Taylor expanded in t around inf 92.0%
associate-*r/92.0%
mul-1-neg92.0%
distribute-lft-neg-out92.0%
*-commutative92.0%
Simplified92.0%
Taylor expanded in z around inf 92.0%
mul-1-neg92.0%
associate-/l*92.0%
distribute-neg-frac92.0%
Simplified92.0%
if -7.9999999999999994e-40 < z < -4.80000000000000011e-73Initial program 100.0%
Taylor expanded in z around 0 60.3%
associate-/l*60.3%
Simplified60.3%
div-inv60.3%
add-sqr-sqrt20.3%
sqrt-unprod40.3%
sqr-neg40.3%
sqrt-unprod40.0%
add-sqr-sqrt80.9%
clear-num80.9%
cancel-sign-sub-inv80.9%
Applied egg-rr80.9%
if -4.80000000000000011e-73 < z < 1.60000000000000004e-90Initial program 96.2%
Taylor expanded in z around 0 90.7%
associate-/l*89.8%
Simplified89.8%
associate-/r/90.6%
Applied egg-rr90.6%
*-commutative90.6%
clear-num90.6%
un-div-inv91.0%
Applied egg-rr91.0%
Final simplification86.7%
(FPCore (x y z t a)
:precision binary64
(let* ((t_1 (+ x (* y (/ (- z t) z)))))
(if (<= z -3.6e-75)
t_1
(if (<= z 1.4e-88)
(+ x (/ y (/ a t)))
(if (<= z 2.2e-32)
(+ x (/ (* y (- z t)) z))
(if (<= z 1.65e+37) (+ x (* y (/ t a))) t_1))))))
double code(double x, double y, double z, double t, double a) {
double t_1 = x + (y * ((z - t) / z));
double tmp;
if (z <= -3.6e-75) {
tmp = t_1;
} else if (z <= 1.4e-88) {
tmp = x + (y / (a / t));
} else if (z <= 2.2e-32) {
tmp = x + ((y * (z - t)) / z);
} else if (z <= 1.65e+37) {
tmp = x + (y * (t / a));
} else {
tmp = t_1;
}
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
real(8) :: t_1
real(8) :: tmp
t_1 = x + (y * ((z - t) / z))
if (z <= (-3.6d-75)) then
tmp = t_1
else if (z <= 1.4d-88) then
tmp = x + (y / (a / t))
else if (z <= 2.2d-32) then
tmp = x + ((y * (z - t)) / z)
else if (z <= 1.65d+37) then
tmp = x + (y * (t / a))
else
tmp = t_1
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double t_1 = x + (y * ((z - t) / z));
double tmp;
if (z <= -3.6e-75) {
tmp = t_1;
} else if (z <= 1.4e-88) {
tmp = x + (y / (a / t));
} else if (z <= 2.2e-32) {
tmp = x + ((y * (z - t)) / z);
} else if (z <= 1.65e+37) {
tmp = x + (y * (t / a));
} else {
tmp = t_1;
}
return tmp;
}
def code(x, y, z, t, a): t_1 = x + (y * ((z - t) / z)) tmp = 0 if z <= -3.6e-75: tmp = t_1 elif z <= 1.4e-88: tmp = x + (y / (a / t)) elif z <= 2.2e-32: tmp = x + ((y * (z - t)) / z) elif z <= 1.65e+37: tmp = x + (y * (t / a)) else: tmp = t_1 return tmp
function code(x, y, z, t, a) t_1 = Float64(x + Float64(y * Float64(Float64(z - t) / z))) tmp = 0.0 if (z <= -3.6e-75) tmp = t_1; elseif (z <= 1.4e-88) tmp = Float64(x + Float64(y / Float64(a / t))); elseif (z <= 2.2e-32) tmp = Float64(x + Float64(Float64(y * Float64(z - t)) / z)); elseif (z <= 1.65e+37) tmp = Float64(x + Float64(y * Float64(t / a))); else tmp = t_1; end return tmp end
function tmp_2 = code(x, y, z, t, a) t_1 = x + (y * ((z - t) / z)); tmp = 0.0; if (z <= -3.6e-75) tmp = t_1; elseif (z <= 1.4e-88) tmp = x + (y / (a / t)); elseif (z <= 2.2e-32) tmp = x + ((y * (z - t)) / z); elseif (z <= 1.65e+37) tmp = x + (y * (t / a)); else tmp = t_1; end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(x + N[(y * N[(N[(z - t), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -3.6e-75], t$95$1, If[LessEqual[z, 1.4e-88], N[(x + N[(y / N[(a / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 2.2e-32], N[(x + N[(N[(y * N[(z - t), $MachinePrecision]), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 1.65e+37], N[(x + N[(y * N[(t / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := x + y \cdot \frac{z - t}{z}\\
\mathbf{if}\;z \leq -3.6 \cdot 10^{-75}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;z \leq 1.4 \cdot 10^{-88}:\\
\;\;\;\;x + \frac{y}{\frac{a}{t}}\\
\mathbf{elif}\;z \leq 2.2 \cdot 10^{-32}:\\
\;\;\;\;x + \frac{y \cdot \left(z - t\right)}{z}\\
\mathbf{elif}\;z \leq 1.65 \cdot 10^{+37}:\\
\;\;\;\;x + y \cdot \frac{t}{a}\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if z < -3.6e-75 or 1.65e37 < z Initial program 99.9%
Taylor expanded in a around 0 87.0%
if -3.6e-75 < z < 1.39999999999999988e-88Initial program 96.2%
Taylor expanded in z around 0 90.7%
associate-/l*89.8%
Simplified89.8%
associate-/r/90.6%
Applied egg-rr90.6%
*-commutative90.6%
clear-num90.6%
un-div-inv91.0%
Applied egg-rr91.0%
if 1.39999999999999988e-88 < z < 2.2e-32Initial program 85.7%
Taylor expanded in a around 0 71.9%
if 2.2e-32 < z < 1.65e37Initial program 100.0%
Taylor expanded in z around 0 91.7%
Final simplification88.1%
(FPCore (x y z t a)
:precision binary64
(let* ((t_1 (+ x (* y (/ (- z t) z)))))
(if (<= z -1.12e-71)
t_1
(if (<= z 4.7e-87)
(- x (/ y (/ a (- z t))))
(if (<= z 6.8e-32)
(+ x (/ (* y (- z t)) z))
(if (<= z 1e+37) (+ x (* y (/ t a))) t_1))))))
double code(double x, double y, double z, double t, double a) {
double t_1 = x + (y * ((z - t) / z));
double tmp;
if (z <= -1.12e-71) {
tmp = t_1;
} else if (z <= 4.7e-87) {
tmp = x - (y / (a / (z - t)));
} else if (z <= 6.8e-32) {
tmp = x + ((y * (z - t)) / z);
} else if (z <= 1e+37) {
tmp = x + (y * (t / a));
} else {
tmp = t_1;
}
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
real(8) :: t_1
real(8) :: tmp
t_1 = x + (y * ((z - t) / z))
if (z <= (-1.12d-71)) then
tmp = t_1
else if (z <= 4.7d-87) then
tmp = x - (y / (a / (z - t)))
else if (z <= 6.8d-32) then
tmp = x + ((y * (z - t)) / z)
else if (z <= 1d+37) then
tmp = x + (y * (t / a))
else
tmp = t_1
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double t_1 = x + (y * ((z - t) / z));
double tmp;
if (z <= -1.12e-71) {
tmp = t_1;
} else if (z <= 4.7e-87) {
tmp = x - (y / (a / (z - t)));
} else if (z <= 6.8e-32) {
tmp = x + ((y * (z - t)) / z);
} else if (z <= 1e+37) {
tmp = x + (y * (t / a));
} else {
tmp = t_1;
}
return tmp;
}
def code(x, y, z, t, a): t_1 = x + (y * ((z - t) / z)) tmp = 0 if z <= -1.12e-71: tmp = t_1 elif z <= 4.7e-87: tmp = x - (y / (a / (z - t))) elif z <= 6.8e-32: tmp = x + ((y * (z - t)) / z) elif z <= 1e+37: tmp = x + (y * (t / a)) else: tmp = t_1 return tmp
function code(x, y, z, t, a) t_1 = Float64(x + Float64(y * Float64(Float64(z - t) / z))) tmp = 0.0 if (z <= -1.12e-71) tmp = t_1; elseif (z <= 4.7e-87) tmp = Float64(x - Float64(y / Float64(a / Float64(z - t)))); elseif (z <= 6.8e-32) tmp = Float64(x + Float64(Float64(y * Float64(z - t)) / z)); elseif (z <= 1e+37) tmp = Float64(x + Float64(y * Float64(t / a))); else tmp = t_1; end return tmp end
function tmp_2 = code(x, y, z, t, a) t_1 = x + (y * ((z - t) / z)); tmp = 0.0; if (z <= -1.12e-71) tmp = t_1; elseif (z <= 4.7e-87) tmp = x - (y / (a / (z - t))); elseif (z <= 6.8e-32) tmp = x + ((y * (z - t)) / z); elseif (z <= 1e+37) tmp = x + (y * (t / a)); else tmp = t_1; end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(x + N[(y * N[(N[(z - t), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -1.12e-71], t$95$1, If[LessEqual[z, 4.7e-87], N[(x - N[(y / N[(a / N[(z - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 6.8e-32], N[(x + N[(N[(y * N[(z - t), $MachinePrecision]), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 1e+37], N[(x + N[(y * N[(t / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := x + y \cdot \frac{z - t}{z}\\
\mathbf{if}\;z \leq -1.12 \cdot 10^{-71}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;z \leq 4.7 \cdot 10^{-87}:\\
\;\;\;\;x - \frac{y}{\frac{a}{z - t}}\\
\mathbf{elif}\;z \leq 6.8 \cdot 10^{-32}:\\
\;\;\;\;x + \frac{y \cdot \left(z - t\right)}{z}\\
\mathbf{elif}\;z \leq 10^{+37}:\\
\;\;\;\;x + y \cdot \frac{t}{a}\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if z < -1.1199999999999999e-71 or 9.99999999999999954e36 < z Initial program 99.9%
Taylor expanded in a around 0 87.0%
if -1.1199999999999999e-71 < z < 4.7000000000000001e-87Initial program 96.3%
Taylor expanded in a around inf 92.6%
mul-1-neg92.6%
associate-/l*92.9%
Simplified92.9%
if 4.7000000000000001e-87 < z < 6.79999999999999956e-32Initial program 84.6%
Taylor expanded in a around 0 77.0%
if 6.79999999999999956e-32 < z < 9.99999999999999954e36Initial program 100.0%
Taylor expanded in z around 0 91.7%
Final simplification89.2%
(FPCore (x y z t a)
:precision binary64
(if (<= z -2.9e+28)
(+ x y)
(if (<= z -1.25e-71)
(- x (/ t (/ z y)))
(if (<= z 5.2e+37) (+ x (/ y (/ a t))) (+ x y)))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if (z <= -2.9e+28) {
tmp = x + y;
} else if (z <= -1.25e-71) {
tmp = x - (t / (z / y));
} else if (z <= 5.2e+37) {
tmp = x + (y / (a / t));
} else {
tmp = x + y;
}
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
real(8) :: tmp
if (z <= (-2.9d+28)) then
tmp = x + y
else if (z <= (-1.25d-71)) then
tmp = x - (t / (z / y))
else if (z <= 5.2d+37) then
tmp = x + (y / (a / t))
else
tmp = x + y
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double tmp;
if (z <= -2.9e+28) {
tmp = x + y;
} else if (z <= -1.25e-71) {
tmp = x - (t / (z / y));
} else if (z <= 5.2e+37) {
tmp = x + (y / (a / t));
} else {
tmp = x + y;
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if z <= -2.9e+28: tmp = x + y elif z <= -1.25e-71: tmp = x - (t / (z / y)) elif z <= 5.2e+37: tmp = x + (y / (a / t)) else: tmp = x + y return tmp
function code(x, y, z, t, a) tmp = 0.0 if (z <= -2.9e+28) tmp = Float64(x + y); elseif (z <= -1.25e-71) tmp = Float64(x - Float64(t / Float64(z / y))); elseif (z <= 5.2e+37) tmp = Float64(x + Float64(y / Float64(a / t))); else tmp = Float64(x + y); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if (z <= -2.9e+28) tmp = x + y; elseif (z <= -1.25e-71) tmp = x - (t / (z / y)); elseif (z <= 5.2e+37) tmp = x + (y / (a / t)); else tmp = x + y; end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[LessEqual[z, -2.9e+28], N[(x + y), $MachinePrecision], If[LessEqual[z, -1.25e-71], N[(x - N[(t / N[(z / y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 5.2e+37], N[(x + N[(y / N[(a / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x + y), $MachinePrecision]]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -2.9 \cdot 10^{+28}:\\
\;\;\;\;x + y\\
\mathbf{elif}\;z \leq -1.25 \cdot 10^{-71}:\\
\;\;\;\;x - \frac{t}{\frac{z}{y}}\\
\mathbf{elif}\;z \leq 5.2 \cdot 10^{+37}:\\
\;\;\;\;x + \frac{y}{\frac{a}{t}}\\
\mathbf{else}:\\
\;\;\;\;x + y\\
\end{array}
\end{array}
if z < -2.9000000000000001e28 or 5.1999999999999998e37 < z Initial program 99.9%
Taylor expanded in z around inf 78.1%
if -2.9000000000000001e28 < z < -1.24999999999999999e-71Initial program 99.9%
Taylor expanded in t around inf 90.8%
associate-*r/90.8%
mul-1-neg90.8%
distribute-lft-neg-out90.8%
*-commutative90.8%
Simplified90.8%
Taylor expanded in z around inf 81.4%
mul-1-neg81.4%
associate-/l*81.4%
distribute-neg-frac81.4%
Simplified81.4%
if -1.24999999999999999e-71 < z < 5.1999999999999998e37Initial program 95.5%
Taylor expanded in z around 0 85.1%
associate-/l*82.9%
Simplified82.9%
associate-/r/85.0%
Applied egg-rr85.0%
*-commutative85.0%
clear-num85.0%
un-div-inv85.3%
Applied egg-rr85.3%
Final simplification82.1%
(FPCore (x y z t a) :precision binary64 (if (or (<= z -9.2e-72) (not (<= z 2.9e+38))) (+ x (* y (/ (- z t) z))) (+ x (/ y (/ a t)))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if ((z <= -9.2e-72) || !(z <= 2.9e+38)) {
tmp = x + (y * ((z - t) / z));
} else {
tmp = x + (y / (a / t));
}
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
real(8) :: tmp
if ((z <= (-9.2d-72)) .or. (.not. (z <= 2.9d+38))) then
tmp = x + (y * ((z - t) / z))
else
tmp = x + (y / (a / t))
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double tmp;
if ((z <= -9.2e-72) || !(z <= 2.9e+38)) {
tmp = x + (y * ((z - t) / z));
} else {
tmp = x + (y / (a / t));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if (z <= -9.2e-72) or not (z <= 2.9e+38): tmp = x + (y * ((z - t) / z)) else: tmp = x + (y / (a / t)) return tmp
function code(x, y, z, t, a) tmp = 0.0 if ((z <= -9.2e-72) || !(z <= 2.9e+38)) tmp = Float64(x + Float64(y * Float64(Float64(z - t) / z))); else tmp = Float64(x + Float64(y / Float64(a / t))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if ((z <= -9.2e-72) || ~((z <= 2.9e+38))) tmp = x + (y * ((z - t) / z)); else tmp = x + (y / (a / t)); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[z, -9.2e-72], N[Not[LessEqual[z, 2.9e+38]], $MachinePrecision]], N[(x + N[(y * N[(N[(z - t), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x + N[(y / N[(a / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -9.2 \cdot 10^{-72} \lor \neg \left(z \leq 2.9 \cdot 10^{+38}\right):\\
\;\;\;\;x + y \cdot \frac{z - t}{z}\\
\mathbf{else}:\\
\;\;\;\;x + \frac{y}{\frac{a}{t}}\\
\end{array}
\end{array}
if z < -9.19999999999999978e-72 or 2.90000000000000007e38 < z Initial program 99.9%
Taylor expanded in a around 0 87.0%
if -9.19999999999999978e-72 < z < 2.90000000000000007e38Initial program 95.5%
Taylor expanded in z around 0 85.1%
associate-/l*82.9%
Simplified82.9%
associate-/r/85.0%
Applied egg-rr85.0%
*-commutative85.0%
clear-num85.0%
un-div-inv85.3%
Applied egg-rr85.3%
Final simplification86.1%
(FPCore (x y z t a) :precision binary64 (if (<= z -1.42e+25) (+ x (* y (/ z (- z a)))) (if (<= z 5.5e+37) (- x (* t (/ y (- z a)))) (+ x (* y (/ (- z t) z))))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if (z <= -1.42e+25) {
tmp = x + (y * (z / (z - a)));
} else if (z <= 5.5e+37) {
tmp = x - (t * (y / (z - a)));
} else {
tmp = x + (y * ((z - t) / z));
}
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
real(8) :: tmp
if (z <= (-1.42d+25)) then
tmp = x + (y * (z / (z - a)))
else if (z <= 5.5d+37) then
tmp = x - (t * (y / (z - a)))
else
tmp = x + (y * ((z - t) / z))
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double tmp;
if (z <= -1.42e+25) {
tmp = x + (y * (z / (z - a)));
} else if (z <= 5.5e+37) {
tmp = x - (t * (y / (z - a)));
} else {
tmp = x + (y * ((z - t) / z));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if z <= -1.42e+25: tmp = x + (y * (z / (z - a))) elif z <= 5.5e+37: tmp = x - (t * (y / (z - a))) else: tmp = x + (y * ((z - t) / z)) return tmp
function code(x, y, z, t, a) tmp = 0.0 if (z <= -1.42e+25) tmp = Float64(x + Float64(y * Float64(z / Float64(z - a)))); elseif (z <= 5.5e+37) tmp = Float64(x - Float64(t * Float64(y / Float64(z - a)))); else tmp = Float64(x + Float64(y * Float64(Float64(z - t) / z))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if (z <= -1.42e+25) tmp = x + (y * (z / (z - a))); elseif (z <= 5.5e+37) tmp = x - (t * (y / (z - a))); else tmp = x + (y * ((z - t) / z)); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[LessEqual[z, -1.42e+25], N[(x + N[(y * N[(z / N[(z - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 5.5e+37], N[(x - N[(t * N[(y / N[(z - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x + N[(y * N[(N[(z - t), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -1.42 \cdot 10^{+25}:\\
\;\;\;\;x + y \cdot \frac{z}{z - a}\\
\mathbf{elif}\;z \leq 5.5 \cdot 10^{+37}:\\
\;\;\;\;x - t \cdot \frac{y}{z - a}\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot \frac{z - t}{z}\\
\end{array}
\end{array}
if z < -1.4199999999999999e25Initial program 99.9%
Taylor expanded in t around 0 90.5%
if -1.4199999999999999e25 < z < 5.50000000000000016e37Initial program 96.1%
associate-*r/98.0%
Simplified98.0%
associate-/l*96.4%
associate-/r/94.4%
Applied egg-rr94.4%
Taylor expanded in t around inf 91.7%
mul-1-neg91.7%
*-commutative91.7%
associate-*l/90.0%
distribute-rgt-neg-out90.0%
Simplified90.0%
if 5.50000000000000016e37 < z Initial program 99.9%
Taylor expanded in a around 0 91.2%
Final simplification90.3%
(FPCore (x y z t a) :precision binary64 (if (<= z -1.66e+27) (+ x (* y (/ z (- z a)))) (if (<= z 4.8e+37) (- x (/ (* y t) (- z a))) (+ x (* y (/ (- z t) z))))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if (z <= -1.66e+27) {
tmp = x + (y * (z / (z - a)));
} else if (z <= 4.8e+37) {
tmp = x - ((y * t) / (z - a));
} else {
tmp = x + (y * ((z - t) / z));
}
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
real(8) :: tmp
if (z <= (-1.66d+27)) then
tmp = x + (y * (z / (z - a)))
else if (z <= 4.8d+37) then
tmp = x - ((y * t) / (z - a))
else
tmp = x + (y * ((z - t) / z))
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double tmp;
if (z <= -1.66e+27) {
tmp = x + (y * (z / (z - a)));
} else if (z <= 4.8e+37) {
tmp = x - ((y * t) / (z - a));
} else {
tmp = x + (y * ((z - t) / z));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if z <= -1.66e+27: tmp = x + (y * (z / (z - a))) elif z <= 4.8e+37: tmp = x - ((y * t) / (z - a)) else: tmp = x + (y * ((z - t) / z)) return tmp
function code(x, y, z, t, a) tmp = 0.0 if (z <= -1.66e+27) tmp = Float64(x + Float64(y * Float64(z / Float64(z - a)))); elseif (z <= 4.8e+37) tmp = Float64(x - Float64(Float64(y * t) / Float64(z - a))); else tmp = Float64(x + Float64(y * Float64(Float64(z - t) / z))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if (z <= -1.66e+27) tmp = x + (y * (z / (z - a))); elseif (z <= 4.8e+37) tmp = x - ((y * t) / (z - a)); else tmp = x + (y * ((z - t) / z)); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[LessEqual[z, -1.66e+27], N[(x + N[(y * N[(z / N[(z - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 4.8e+37], N[(x - N[(N[(y * t), $MachinePrecision] / N[(z - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x + N[(y * N[(N[(z - t), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -1.66 \cdot 10^{+27}:\\
\;\;\;\;x + y \cdot \frac{z}{z - a}\\
\mathbf{elif}\;z \leq 4.8 \cdot 10^{+37}:\\
\;\;\;\;x - \frac{y \cdot t}{z - a}\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot \frac{z - t}{z}\\
\end{array}
\end{array}
if z < -1.65999999999999986e27Initial program 99.9%
Taylor expanded in t around 0 90.5%
if -1.65999999999999986e27 < z < 4.8e37Initial program 96.1%
Taylor expanded in t around inf 91.7%
associate-*r/91.7%
mul-1-neg91.7%
distribute-lft-neg-out91.7%
*-commutative91.7%
Simplified91.7%
if 4.8e37 < z Initial program 99.9%
Taylor expanded in a around 0 91.2%
Final simplification91.4%
(FPCore (x y z t a) :precision binary64 (if (or (<= z -7.5e+16) (not (<= z 4.2e+38))) (+ x y) (+ x (* t (/ y a)))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if ((z <= -7.5e+16) || !(z <= 4.2e+38)) {
tmp = x + y;
} else {
tmp = x + (t * (y / a));
}
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
real(8) :: tmp
if ((z <= (-7.5d+16)) .or. (.not. (z <= 4.2d+38))) then
tmp = x + y
else
tmp = x + (t * (y / a))
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double tmp;
if ((z <= -7.5e+16) || !(z <= 4.2e+38)) {
tmp = x + y;
} else {
tmp = x + (t * (y / a));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if (z <= -7.5e+16) or not (z <= 4.2e+38): tmp = x + y else: tmp = x + (t * (y / a)) return tmp
function code(x, y, z, t, a) tmp = 0.0 if ((z <= -7.5e+16) || !(z <= 4.2e+38)) tmp = Float64(x + y); else tmp = Float64(x + Float64(t * Float64(y / a))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if ((z <= -7.5e+16) || ~((z <= 4.2e+38))) tmp = x + y; else tmp = x + (t * (y / a)); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[z, -7.5e+16], N[Not[LessEqual[z, 4.2e+38]], $MachinePrecision]], N[(x + y), $MachinePrecision], N[(x + N[(t * N[(y / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -7.5 \cdot 10^{+16} \lor \neg \left(z \leq 4.2 \cdot 10^{+38}\right):\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;x + t \cdot \frac{y}{a}\\
\end{array}
\end{array}
if z < -7.5e16 or 4.2e38 < z Initial program 99.9%
Taylor expanded in z around inf 77.6%
if -7.5e16 < z < 4.2e38Initial program 96.0%
Taylor expanded in z around 0 81.1%
associate-/l*79.3%
div-inv79.2%
clear-num79.4%
Applied egg-rr79.4%
Final simplification78.7%
(FPCore (x y z t a) :precision binary64 (if (or (<= z -2.6e+15) (not (<= z 6.2e+36))) (+ x y) (+ x (* y (/ t a)))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if ((z <= -2.6e+15) || !(z <= 6.2e+36)) {
tmp = x + y;
} else {
tmp = x + (y * (t / a));
}
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
real(8) :: tmp
if ((z <= (-2.6d+15)) .or. (.not. (z <= 6.2d+36))) then
tmp = x + y
else
tmp = x + (y * (t / a))
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double tmp;
if ((z <= -2.6e+15) || !(z <= 6.2e+36)) {
tmp = x + y;
} else {
tmp = x + (y * (t / a));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if (z <= -2.6e+15) or not (z <= 6.2e+36): tmp = x + y else: tmp = x + (y * (t / a)) return tmp
function code(x, y, z, t, a) tmp = 0.0 if ((z <= -2.6e+15) || !(z <= 6.2e+36)) tmp = Float64(x + y); else tmp = Float64(x + Float64(y * Float64(t / a))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if ((z <= -2.6e+15) || ~((z <= 6.2e+36))) tmp = x + y; else tmp = x + (y * (t / a)); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[z, -2.6e+15], N[Not[LessEqual[z, 6.2e+36]], $MachinePrecision]], N[(x + y), $MachinePrecision], N[(x + N[(y * N[(t / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -2.6 \cdot 10^{+15} \lor \neg \left(z \leq 6.2 \cdot 10^{+36}\right):\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot \frac{t}{a}\\
\end{array}
\end{array}
if z < -2.6e15 or 6.1999999999999999e36 < z Initial program 99.9%
Taylor expanded in z around inf 77.6%
if -2.6e15 < z < 6.1999999999999999e36Initial program 96.0%
Taylor expanded in z around 0 81.0%
Final simplification79.6%
(FPCore (x y z t a) :precision binary64 (if (or (<= z -4.2e+15) (not (<= z 1.65e+37))) (+ x y) (+ x (/ y (/ a t)))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if ((z <= -4.2e+15) || !(z <= 1.65e+37)) {
tmp = x + y;
} else {
tmp = x + (y / (a / t));
}
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
real(8) :: tmp
if ((z <= (-4.2d+15)) .or. (.not. (z <= 1.65d+37))) then
tmp = x + y
else
tmp = x + (y / (a / t))
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double tmp;
if ((z <= -4.2e+15) || !(z <= 1.65e+37)) {
tmp = x + y;
} else {
tmp = x + (y / (a / t));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if (z <= -4.2e+15) or not (z <= 1.65e+37): tmp = x + y else: tmp = x + (y / (a / t)) return tmp
function code(x, y, z, t, a) tmp = 0.0 if ((z <= -4.2e+15) || !(z <= 1.65e+37)) tmp = Float64(x + y); else tmp = Float64(x + Float64(y / Float64(a / t))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if ((z <= -4.2e+15) || ~((z <= 1.65e+37))) tmp = x + y; else tmp = x + (y / (a / t)); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[z, -4.2e+15], N[Not[LessEqual[z, 1.65e+37]], $MachinePrecision]], N[(x + y), $MachinePrecision], N[(x + N[(y / N[(a / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -4.2 \cdot 10^{+15} \lor \neg \left(z \leq 1.65 \cdot 10^{+37}\right):\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;x + \frac{y}{\frac{a}{t}}\\
\end{array}
\end{array}
if z < -4.2e15 or 1.65e37 < z Initial program 99.9%
Taylor expanded in z around inf 77.6%
if -4.2e15 < z < 1.65e37Initial program 96.0%
Taylor expanded in z around 0 81.1%
associate-/l*79.3%
Simplified79.3%
associate-/r/81.0%
Applied egg-rr81.0%
*-commutative81.0%
clear-num81.0%
un-div-inv81.3%
Applied egg-rr81.3%
Final simplification79.8%
(FPCore (x y z t a) :precision binary64 (if (<= a -3.9e+28) x (if (<= a 5.3e+201) (+ x y) x)))
double code(double x, double y, double z, double t, double a) {
double tmp;
if (a <= -3.9e+28) {
tmp = x;
} else if (a <= 5.3e+201) {
tmp = x + y;
} else {
tmp = x;
}
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
real(8) :: tmp
if (a <= (-3.9d+28)) then
tmp = x
else if (a <= 5.3d+201) then
tmp = x + y
else
tmp = x
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double tmp;
if (a <= -3.9e+28) {
tmp = x;
} else if (a <= 5.3e+201) {
tmp = x + y;
} else {
tmp = x;
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if a <= -3.9e+28: tmp = x elif a <= 5.3e+201: tmp = x + y else: tmp = x return tmp
function code(x, y, z, t, a) tmp = 0.0 if (a <= -3.9e+28) tmp = x; elseif (a <= 5.3e+201) tmp = Float64(x + y); else tmp = x; end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if (a <= -3.9e+28) tmp = x; elseif (a <= 5.3e+201) tmp = x + y; else tmp = x; end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[LessEqual[a, -3.9e+28], x, If[LessEqual[a, 5.3e+201], N[(x + y), $MachinePrecision], x]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;a \leq -3.9 \cdot 10^{+28}:\\
\;\;\;\;x\\
\mathbf{elif}\;a \leq 5.3 \cdot 10^{+201}:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\end{array}
if a < -3.8999999999999999e28 or 5.30000000000000035e201 < a Initial program 99.8%
Taylor expanded in z around 0 86.8%
Taylor expanded in x around inf 74.0%
if -3.8999999999999999e28 < a < 5.30000000000000035e201Initial program 96.7%
Taylor expanded in z around inf 58.0%
Final simplification62.8%
(FPCore (x y z t a) :precision binary64 x)
double code(double x, double y, double z, double t, double a) {
return x;
}
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
end function
public static double code(double x, double y, double z, double t, double a) {
return x;
}
def code(x, y, z, t, a): return x
function code(x, y, z, t, a) return x end
function tmp = code(x, y, z, t, a) tmp = x; end
code[x_, y_, z_, t_, a_] := x
\begin{array}{l}
\\
x
\end{array}
Initial program 97.6%
Taylor expanded in z around 0 65.9%
Taylor expanded in x around inf 49.1%
Final simplification49.1%
(FPCore (x y z t a) :precision binary64 (+ x (/ y (/ (- z a) (- z t)))))
double code(double x, double y, double z, double t, double a) {
return x + (y / ((z - a) / (z - t)));
}
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 - a) / (z - t)))
end function
public static double code(double x, double y, double z, double t, double a) {
return x + (y / ((z - a) / (z - t)));
}
def code(x, y, z, t, a): return x + (y / ((z - a) / (z - t)))
function code(x, y, z, t, a) return Float64(x + Float64(y / Float64(Float64(z - a) / Float64(z - t)))) end
function tmp = code(x, y, z, t, a) tmp = x + (y / ((z - a) / (z - t))); end
code[x_, y_, z_, t_, a_] := N[(x + N[(y / N[(N[(z - a), $MachinePrecision] / N[(z - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x + \frac{y}{\frac{z - a}{z - t}}
\end{array}
herbie shell --seed 2024031
(FPCore (x y z t a)
:name "Graphics.Rendering.Plot.Render.Plot.Axis:renderAxisLine from plot-0.2.3.4, A"
:precision binary64
:herbie-target
(+ x (/ y (/ (- z a) (- z t))))
(+ x (* y (/ (- z t) (- z a)))))