
(FPCore (x y z t) :precision binary64 (+ (- (* (/ 1.0 8.0) x) (/ (* y z) 2.0)) t))
double code(double x, double y, double z, double t) {
return (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = (((1.0d0 / 8.0d0) * x) - ((y * z) / 2.0d0)) + t
end function
public static double code(double x, double y, double z, double t) {
return (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t;
}
def code(x, y, z, t): return (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t
function code(x, y, z, t) return Float64(Float64(Float64(Float64(1.0 / 8.0) * x) - Float64(Float64(y * z) / 2.0)) + t) end
function tmp = code(x, y, z, t) tmp = (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t; end
code[x_, y_, z_, t_] := N[(N[(N[(N[(1.0 / 8.0), $MachinePrecision] * x), $MachinePrecision] - N[(N[(y * z), $MachinePrecision] / 2.0), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision]
\begin{array}{l}
\\
\left(\frac{1}{8} \cdot x - \frac{y \cdot z}{2}\right) + t
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 7 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y z t) :precision binary64 (+ (- (* (/ 1.0 8.0) x) (/ (* y z) 2.0)) t))
double code(double x, double y, double z, double t) {
return (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = (((1.0d0 / 8.0d0) * x) - ((y * z) / 2.0d0)) + t
end function
public static double code(double x, double y, double z, double t) {
return (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t;
}
def code(x, y, z, t): return (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t
function code(x, y, z, t) return Float64(Float64(Float64(Float64(1.0 / 8.0) * x) - Float64(Float64(y * z) / 2.0)) + t) end
function tmp = code(x, y, z, t) tmp = (((1.0 / 8.0) * x) - ((y * z) / 2.0)) + t; end
code[x_, y_, z_, t_] := N[(N[(N[(N[(1.0 / 8.0), $MachinePrecision] * x), $MachinePrecision] - N[(N[(y * z), $MachinePrecision] / 2.0), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision]
\begin{array}{l}
\\
\left(\frac{1}{8} \cdot x - \frac{y \cdot z}{2}\right) + t
\end{array}
(FPCore (x y z t) :precision binary64 (+ (- (* 0.125 x) (* y (/ z 2.0))) t))
double code(double x, double y, double z, double t) {
return ((0.125 * x) - (y * (z / 2.0))) + t;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = ((0.125d0 * x) - (y * (z / 2.0d0))) + t
end function
public static double code(double x, double y, double z, double t) {
return ((0.125 * x) - (y * (z / 2.0))) + t;
}
def code(x, y, z, t): return ((0.125 * x) - (y * (z / 2.0))) + t
function code(x, y, z, t) return Float64(Float64(Float64(0.125 * x) - Float64(y * Float64(z / 2.0))) + t) end
function tmp = code(x, y, z, t) tmp = ((0.125 * x) - (y * (z / 2.0))) + t; end
code[x_, y_, z_, t_] := N[(N[(N[(0.125 * x), $MachinePrecision] - N[(y * N[(z / 2.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + t), $MachinePrecision]
\begin{array}{l}
\\
\left(0.125 \cdot x - y \cdot \frac{z}{2}\right) + t
\end{array}
Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
(FPCore (x y z t)
:precision binary64
(let* ((t_1 (* y (* z -0.5))))
(if (<= z -2.3e-171)
t_1
(if (<= z 1.9e-94)
(* 0.125 x)
(if (<= z 5.3e+39) t (if (<= z 4.6e+77) (* 0.125 x) t_1))))))
double code(double x, double y, double z, double t) {
double t_1 = y * (z * -0.5);
double tmp;
if (z <= -2.3e-171) {
tmp = t_1;
} else if (z <= 1.9e-94) {
tmp = 0.125 * x;
} else if (z <= 5.3e+39) {
tmp = t;
} else if (z <= 4.6e+77) {
tmp = 0.125 * x;
} else {
tmp = t_1;
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: t_1
real(8) :: tmp
t_1 = y * (z * (-0.5d0))
if (z <= (-2.3d-171)) then
tmp = t_1
else if (z <= 1.9d-94) then
tmp = 0.125d0 * x
else if (z <= 5.3d+39) then
tmp = t
else if (z <= 4.6d+77) then
tmp = 0.125d0 * x
else
tmp = t_1
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double t_1 = y * (z * -0.5);
double tmp;
if (z <= -2.3e-171) {
tmp = t_1;
} else if (z <= 1.9e-94) {
tmp = 0.125 * x;
} else if (z <= 5.3e+39) {
tmp = t;
} else if (z <= 4.6e+77) {
tmp = 0.125 * x;
} else {
tmp = t_1;
}
return tmp;
}
def code(x, y, z, t): t_1 = y * (z * -0.5) tmp = 0 if z <= -2.3e-171: tmp = t_1 elif z <= 1.9e-94: tmp = 0.125 * x elif z <= 5.3e+39: tmp = t elif z <= 4.6e+77: tmp = 0.125 * x else: tmp = t_1 return tmp
function code(x, y, z, t) t_1 = Float64(y * Float64(z * -0.5)) tmp = 0.0 if (z <= -2.3e-171) tmp = t_1; elseif (z <= 1.9e-94) tmp = Float64(0.125 * x); elseif (z <= 5.3e+39) tmp = t; elseif (z <= 4.6e+77) tmp = Float64(0.125 * x); else tmp = t_1; end return tmp end
function tmp_2 = code(x, y, z, t) t_1 = y * (z * -0.5); tmp = 0.0; if (z <= -2.3e-171) tmp = t_1; elseif (z <= 1.9e-94) tmp = 0.125 * x; elseif (z <= 5.3e+39) tmp = t; elseif (z <= 4.6e+77) tmp = 0.125 * x; else tmp = t_1; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(y * N[(z * -0.5), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -2.3e-171], t$95$1, If[LessEqual[z, 1.9e-94], N[(0.125 * x), $MachinePrecision], If[LessEqual[z, 5.3e+39], t, If[LessEqual[z, 4.6e+77], N[(0.125 * x), $MachinePrecision], t$95$1]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := y \cdot \left(z \cdot -0.5\right)\\
\mathbf{if}\;z \leq -2.3 \cdot 10^{-171}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;z \leq 1.9 \cdot 10^{-94}:\\
\;\;\;\;0.125 \cdot x\\
\mathbf{elif}\;z \leq 5.3 \cdot 10^{+39}:\\
\;\;\;\;t\\
\mathbf{elif}\;z \leq 4.6 \cdot 10^{+77}:\\
\;\;\;\;0.125 \cdot x\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if z < -2.29999999999999978e-171 or 4.5999999999999999e77 < z Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in y around inf 60.1%
*-commutative60.1%
associate-*r*60.1%
Simplified60.1%
if -2.29999999999999978e-171 < z < 1.9e-94 or 5.29999999999999979e39 < z < 4.5999999999999999e77Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in x around inf 51.5%
if 1.9e-94 < z < 5.29999999999999979e39Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in t around inf 53.7%
(FPCore (x y z t) :precision binary64 (if (or (<= (* y z) -5e-7) (not (<= (* y z) 5e+74))) (- (* 0.125 x) (* (* y z) 0.5)) (+ (* 0.125 x) t)))
double code(double x, double y, double z, double t) {
double tmp;
if (((y * z) <= -5e-7) || !((y * z) <= 5e+74)) {
tmp = (0.125 * x) - ((y * z) * 0.5);
} else {
tmp = (0.125 * x) + t;
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: tmp
if (((y * z) <= (-5d-7)) .or. (.not. ((y * z) <= 5d+74))) then
tmp = (0.125d0 * x) - ((y * z) * 0.5d0)
else
tmp = (0.125d0 * x) + t
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double tmp;
if (((y * z) <= -5e-7) || !((y * z) <= 5e+74)) {
tmp = (0.125 * x) - ((y * z) * 0.5);
} else {
tmp = (0.125 * x) + t;
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if ((y * z) <= -5e-7) or not ((y * z) <= 5e+74): tmp = (0.125 * x) - ((y * z) * 0.5) else: tmp = (0.125 * x) + t return tmp
function code(x, y, z, t) tmp = 0.0 if ((Float64(y * z) <= -5e-7) || !(Float64(y * z) <= 5e+74)) tmp = Float64(Float64(0.125 * x) - Float64(Float64(y * z) * 0.5)); else tmp = Float64(Float64(0.125 * x) + t); end return tmp end
function tmp_2 = code(x, y, z, t) tmp = 0.0; if (((y * z) <= -5e-7) || ~(((y * z) <= 5e+74))) tmp = (0.125 * x) - ((y * z) * 0.5); else tmp = (0.125 * x) + t; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := If[Or[LessEqual[N[(y * z), $MachinePrecision], -5e-7], N[Not[LessEqual[N[(y * z), $MachinePrecision], 5e+74]], $MachinePrecision]], N[(N[(0.125 * x), $MachinePrecision] - N[(N[(y * z), $MachinePrecision] * 0.5), $MachinePrecision]), $MachinePrecision], N[(N[(0.125 * x), $MachinePrecision] + t), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \cdot z \leq -5 \cdot 10^{-7} \lor \neg \left(y \cdot z \leq 5 \cdot 10^{+74}\right):\\
\;\;\;\;0.125 \cdot x - \left(y \cdot z\right) \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;0.125 \cdot x + t\\
\end{array}
\end{array}
if (*.f64 y z) < -4.99999999999999977e-7 or 4.99999999999999963e74 < (*.f64 y z) Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in t around 0 89.3%
if -4.99999999999999977e-7 < (*.f64 y z) < 4.99999999999999963e74Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in y around 0 91.1%
Final simplification90.3%
(FPCore (x y z t) :precision binary64 (if (or (<= z -2.4e-171) (not (<= z 1.05e+68))) (- t (* z (* y 0.5))) (+ (* 0.125 x) t)))
double code(double x, double y, double z, double t) {
double tmp;
if ((z <= -2.4e-171) || !(z <= 1.05e+68)) {
tmp = t - (z * (y * 0.5));
} else {
tmp = (0.125 * x) + t;
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: tmp
if ((z <= (-2.4d-171)) .or. (.not. (z <= 1.05d+68))) then
tmp = t - (z * (y * 0.5d0))
else
tmp = (0.125d0 * x) + t
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double tmp;
if ((z <= -2.4e-171) || !(z <= 1.05e+68)) {
tmp = t - (z * (y * 0.5));
} else {
tmp = (0.125 * x) + t;
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if (z <= -2.4e-171) or not (z <= 1.05e+68): tmp = t - (z * (y * 0.5)) else: tmp = (0.125 * x) + t return tmp
function code(x, y, z, t) tmp = 0.0 if ((z <= -2.4e-171) || !(z <= 1.05e+68)) tmp = Float64(t - Float64(z * Float64(y * 0.5))); else tmp = Float64(Float64(0.125 * x) + t); end return tmp end
function tmp_2 = code(x, y, z, t) tmp = 0.0; if ((z <= -2.4e-171) || ~((z <= 1.05e+68))) tmp = t - (z * (y * 0.5)); else tmp = (0.125 * x) + t; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := If[Or[LessEqual[z, -2.4e-171], N[Not[LessEqual[z, 1.05e+68]], $MachinePrecision]], N[(t - N[(z * N[(y * 0.5), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(0.125 * x), $MachinePrecision] + t), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -2.4 \cdot 10^{-171} \lor \neg \left(z \leq 1.05 \cdot 10^{+68}\right):\\
\;\;\;\;t - z \cdot \left(y \cdot 0.5\right)\\
\mathbf{else}:\\
\;\;\;\;0.125 \cdot x + t\\
\end{array}
\end{array}
if z < -2.39999999999999987e-171 or 1.05e68 < z Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in x around 0 75.6%
associate-*r*75.6%
Simplified75.6%
if -2.39999999999999987e-171 < z < 1.05e68Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in y around 0 92.5%
Final simplification83.1%
(FPCore (x y z t) :precision binary64 (if (or (<= y -5.5e+153) (not (<= y 1.9e+73))) (* y (* z -0.5)) (+ (* 0.125 x) t)))
double code(double x, double y, double z, double t) {
double tmp;
if ((y <= -5.5e+153) || !(y <= 1.9e+73)) {
tmp = y * (z * -0.5);
} else {
tmp = (0.125 * x) + t;
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: tmp
if ((y <= (-5.5d+153)) .or. (.not. (y <= 1.9d+73))) then
tmp = y * (z * (-0.5d0))
else
tmp = (0.125d0 * x) + t
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double tmp;
if ((y <= -5.5e+153) || !(y <= 1.9e+73)) {
tmp = y * (z * -0.5);
} else {
tmp = (0.125 * x) + t;
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if (y <= -5.5e+153) or not (y <= 1.9e+73): tmp = y * (z * -0.5) else: tmp = (0.125 * x) + t return tmp
function code(x, y, z, t) tmp = 0.0 if ((y <= -5.5e+153) || !(y <= 1.9e+73)) tmp = Float64(y * Float64(z * -0.5)); else tmp = Float64(Float64(0.125 * x) + t); end return tmp end
function tmp_2 = code(x, y, z, t) tmp = 0.0; if ((y <= -5.5e+153) || ~((y <= 1.9e+73))) tmp = y * (z * -0.5); else tmp = (0.125 * x) + t; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := If[Or[LessEqual[y, -5.5e+153], N[Not[LessEqual[y, 1.9e+73]], $MachinePrecision]], N[(y * N[(z * -0.5), $MachinePrecision]), $MachinePrecision], N[(N[(0.125 * x), $MachinePrecision] + t), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq -5.5 \cdot 10^{+153} \lor \neg \left(y \leq 1.9 \cdot 10^{+73}\right):\\
\;\;\;\;y \cdot \left(z \cdot -0.5\right)\\
\mathbf{else}:\\
\;\;\;\;0.125 \cdot x + t\\
\end{array}
\end{array}
if y < -5.5000000000000003e153 or 1.90000000000000011e73 < y Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in y around inf 66.5%
*-commutative66.5%
associate-*r*66.5%
Simplified66.5%
if -5.5000000000000003e153 < y < 1.90000000000000011e73Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in y around 0 76.1%
Final simplification73.2%
(FPCore (x y z t) :precision binary64 (if (<= t -1.32e+106) t (if (<= t 1.1e+82) (* 0.125 x) t)))
double code(double x, double y, double z, double t) {
double tmp;
if (t <= -1.32e+106) {
tmp = t;
} else if (t <= 1.1e+82) {
tmp = 0.125 * x;
} else {
tmp = t;
}
return tmp;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
real(8) :: tmp
if (t <= (-1.32d+106)) then
tmp = t
else if (t <= 1.1d+82) then
tmp = 0.125d0 * x
else
tmp = t
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double tmp;
if (t <= -1.32e+106) {
tmp = t;
} else if (t <= 1.1e+82) {
tmp = 0.125 * x;
} else {
tmp = t;
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if t <= -1.32e+106: tmp = t elif t <= 1.1e+82: tmp = 0.125 * x else: tmp = t return tmp
function code(x, y, z, t) tmp = 0.0 if (t <= -1.32e+106) tmp = t; elseif (t <= 1.1e+82) tmp = Float64(0.125 * x); else tmp = t; end return tmp end
function tmp_2 = code(x, y, z, t) tmp = 0.0; if (t <= -1.32e+106) tmp = t; elseif (t <= 1.1e+82) tmp = 0.125 * x; else tmp = t; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := If[LessEqual[t, -1.32e+106], t, If[LessEqual[t, 1.1e+82], N[(0.125 * x), $MachinePrecision], t]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;t \leq -1.32 \cdot 10^{+106}:\\
\;\;\;\;t\\
\mathbf{elif}\;t \leq 1.1 \cdot 10^{+82}:\\
\;\;\;\;0.125 \cdot x\\
\mathbf{else}:\\
\;\;\;\;t\\
\end{array}
\end{array}
if t < -1.31999999999999999e106 or 1.1000000000000001e82 < t Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in t around inf 63.6%
if -1.31999999999999999e106 < t < 1.1000000000000001e82Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in x around inf 45.9%
(FPCore (x y z t) :precision binary64 t)
double code(double x, double y, double z, double t) {
return t;
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = t
end function
public static double code(double x, double y, double z, double t) {
return t;
}
def code(x, y, z, t): return t
function code(x, y, z, t) return t end
function tmp = code(x, y, z, t) tmp = t; end
code[x_, y_, z_, t_] := t
\begin{array}{l}
\\
t
\end{array}
Initial program 100.0%
associate-+l-100.0%
*-commutative100.0%
associate-+l-100.0%
metadata-eval100.0%
*-commutative100.0%
associate-/l*100.0%
Simplified100.0%
Taylor expanded in t around inf 30.1%
(FPCore (x y z t) :precision binary64 (- (+ (/ x 8.0) t) (* (/ z 2.0) y)))
double code(double x, double y, double z, double t) {
return ((x / 8.0) + t) - ((z / 2.0) * y);
}
real(8) function code(x, y, z, t)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8), intent (in) :: t
code = ((x / 8.0d0) + t) - ((z / 2.0d0) * y)
end function
public static double code(double x, double y, double z, double t) {
return ((x / 8.0) + t) - ((z / 2.0) * y);
}
def code(x, y, z, t): return ((x / 8.0) + t) - ((z / 2.0) * y)
function code(x, y, z, t) return Float64(Float64(Float64(x / 8.0) + t) - Float64(Float64(z / 2.0) * y)) end
function tmp = code(x, y, z, t) tmp = ((x / 8.0) + t) - ((z / 2.0) * y); end
code[x_, y_, z_, t_] := N[(N[(N[(x / 8.0), $MachinePrecision] + t), $MachinePrecision] - N[(N[(z / 2.0), $MachinePrecision] * y), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(\frac{x}{8} + t\right) - \frac{z}{2} \cdot y
\end{array}
herbie shell --seed 2024111
(FPCore (x y z t)
:name "Diagrams.Solve.Polynomial:quartForm from diagrams-solve-0.1, B"
:precision binary64
:alt
(- (+ (/ x 8.0) t) (* (/ z 2.0) y))
(+ (- (* (/ 1.0 8.0) x) (/ (* y z) 2.0)) t))