
(FPCore (x y z t) :precision binary64 (* (/ (- x y) (- z y)) t))
double code(double x, double y, double z, double t) {
return ((x - y) / (z - y)) * 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 = ((x - y) / (z - y)) * t
end function
public static double code(double x, double y, double z, double t) {
return ((x - y) / (z - y)) * t;
}
def code(x, y, z, t): return ((x - y) / (z - y)) * t
function code(x, y, z, t) return Float64(Float64(Float64(x - y) / Float64(z - y)) * t) end
function tmp = code(x, y, z, t) tmp = ((x - y) / (z - y)) * t; end
code[x_, y_, z_, t_] := N[(N[(N[(x - y), $MachinePrecision] / N[(z - y), $MachinePrecision]), $MachinePrecision] * t), $MachinePrecision]
\begin{array}{l}
\\
\frac{x - y}{z - y} \cdot t
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 7 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y z t) :precision binary64 (* (/ (- x y) (- z y)) t))
double code(double x, double y, double z, double t) {
return ((x - y) / (z - y)) * 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 = ((x - y) / (z - y)) * t
end function
public static double code(double x, double y, double z, double t) {
return ((x - y) / (z - y)) * t;
}
def code(x, y, z, t): return ((x - y) / (z - y)) * t
function code(x, y, z, t) return Float64(Float64(Float64(x - y) / Float64(z - y)) * t) end
function tmp = code(x, y, z, t) tmp = ((x - y) / (z - y)) * t; end
code[x_, y_, z_, t_] := N[(N[(N[(x - y), $MachinePrecision] / N[(z - y), $MachinePrecision]), $MachinePrecision] * t), $MachinePrecision]
\begin{array}{l}
\\
\frac{x - y}{z - y} \cdot t
\end{array}
(FPCore (x y z t) :precision binary64 (/ t (/ (- y z) (- y x))))
double code(double x, double y, double z, double t) {
return t / ((y - z) / (y - x));
}
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 / ((y - z) / (y - x))
end function
public static double code(double x, double y, double z, double t) {
return t / ((y - z) / (y - x));
}
def code(x, y, z, t): return t / ((y - z) / (y - x))
function code(x, y, z, t) return Float64(t / Float64(Float64(y - z) / Float64(y - x))) end
function tmp = code(x, y, z, t) tmp = t / ((y - z) / (y - x)); end
code[x_, y_, z_, t_] := N[(t / N[(N[(y - z), $MachinePrecision] / N[(y - x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{t}{\frac{y - z}{y - x}}
\end{array}
Initial program 97.2%
*-commutative97.2%
associate-*r/82.9%
associate-/l*97.2%
sub-neg97.2%
+-commutative97.2%
neg-sub097.2%
associate-+l-97.2%
sub0-neg97.2%
neg-mul-197.2%
associate-/r*97.2%
Simplified97.2%
Final simplification97.2%
(FPCore (x y z t)
:precision binary64
(let* ((t_1 (* t (/ (- x y) z))))
(if (<= y -5e+62)
t
(if (<= y -1.62e-248)
t_1
(if (<= y 2.8e-270) (* x (/ t z)) (if (<= y 1.05e+46) t_1 t))))))
double code(double x, double y, double z, double t) {
double t_1 = t * ((x - y) / z);
double tmp;
if (y <= -5e+62) {
tmp = t;
} else if (y <= -1.62e-248) {
tmp = t_1;
} else if (y <= 2.8e-270) {
tmp = x * (t / z);
} else if (y <= 1.05e+46) {
tmp = t_1;
} 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) :: t_1
real(8) :: tmp
t_1 = t * ((x - y) / z)
if (y <= (-5d+62)) then
tmp = t
else if (y <= (-1.62d-248)) then
tmp = t_1
else if (y <= 2.8d-270) then
tmp = x * (t / z)
else if (y <= 1.05d+46) then
tmp = t_1
else
tmp = t
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double t_1 = t * ((x - y) / z);
double tmp;
if (y <= -5e+62) {
tmp = t;
} else if (y <= -1.62e-248) {
tmp = t_1;
} else if (y <= 2.8e-270) {
tmp = x * (t / z);
} else if (y <= 1.05e+46) {
tmp = t_1;
} else {
tmp = t;
}
return tmp;
}
def code(x, y, z, t): t_1 = t * ((x - y) / z) tmp = 0 if y <= -5e+62: tmp = t elif y <= -1.62e-248: tmp = t_1 elif y <= 2.8e-270: tmp = x * (t / z) elif y <= 1.05e+46: tmp = t_1 else: tmp = t return tmp
function code(x, y, z, t) t_1 = Float64(t * Float64(Float64(x - y) / z)) tmp = 0.0 if (y <= -5e+62) tmp = t; elseif (y <= -1.62e-248) tmp = t_1; elseif (y <= 2.8e-270) tmp = Float64(x * Float64(t / z)); elseif (y <= 1.05e+46) tmp = t_1; else tmp = t; end return tmp end
function tmp_2 = code(x, y, z, t) t_1 = t * ((x - y) / z); tmp = 0.0; if (y <= -5e+62) tmp = t; elseif (y <= -1.62e-248) tmp = t_1; elseif (y <= 2.8e-270) tmp = x * (t / z); elseif (y <= 1.05e+46) tmp = t_1; else tmp = t; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(t * N[(N[(x - y), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[y, -5e+62], t, If[LessEqual[y, -1.62e-248], t$95$1, If[LessEqual[y, 2.8e-270], N[(x * N[(t / z), $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 1.05e+46], t$95$1, t]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := t \cdot \frac{x - y}{z}\\
\mathbf{if}\;y \leq -5 \cdot 10^{+62}:\\
\;\;\;\;t\\
\mathbf{elif}\;y \leq -1.62 \cdot 10^{-248}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 2.8 \cdot 10^{-270}:\\
\;\;\;\;x \cdot \frac{t}{z}\\
\mathbf{elif}\;y \leq 1.05 \cdot 10^{+46}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t\\
\end{array}
\end{array}
if y < -5.00000000000000029e62 or 1.05e46 < y Initial program 99.8%
Taylor expanded in y around inf 69.2%
if -5.00000000000000029e62 < y < -1.6200000000000001e-248 or 2.7999999999999999e-270 < y < 1.05e46Initial program 98.3%
Taylor expanded in z around inf 67.2%
if -1.6200000000000001e-248 < y < 2.7999999999999999e-270Initial program 79.4%
*-commutative79.4%
associate-*r/87.4%
associate-/l*79.4%
sub-neg79.4%
+-commutative79.4%
neg-sub079.4%
associate-+l-79.4%
sub0-neg79.4%
neg-mul-179.4%
associate-/r*79.4%
Simplified79.4%
div-inv79.3%
add-cube-cbrt78.5%
associate-*l*78.6%
pow278.6%
Applied egg-rr78.6%
Taylor expanded in y around 0 87.4%
associate-*l/95.9%
Simplified95.9%
Final simplification70.6%
(FPCore (x y z t)
:precision binary64
(let* ((t_1 (* t (/ (- y x) y))) (t_2 (* t (/ (- x y) z))))
(if (<= z -4.9e+38)
t_2
(if (<= z 2.4e-152)
t_1
(if (<= z 4e-104) (/ (* t x) z) (if (<= z 1.14e+61) t_1 t_2))))))
double code(double x, double y, double z, double t) {
double t_1 = t * ((y - x) / y);
double t_2 = t * ((x - y) / z);
double tmp;
if (z <= -4.9e+38) {
tmp = t_2;
} else if (z <= 2.4e-152) {
tmp = t_1;
} else if (z <= 4e-104) {
tmp = (t * x) / z;
} else if (z <= 1.14e+61) {
tmp = t_1;
} else {
tmp = t_2;
}
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) :: t_2
real(8) :: tmp
t_1 = t * ((y - x) / y)
t_2 = t * ((x - y) / z)
if (z <= (-4.9d+38)) then
tmp = t_2
else if (z <= 2.4d-152) then
tmp = t_1
else if (z <= 4d-104) then
tmp = (t * x) / z
else if (z <= 1.14d+61) then
tmp = t_1
else
tmp = t_2
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double t_1 = t * ((y - x) / y);
double t_2 = t * ((x - y) / z);
double tmp;
if (z <= -4.9e+38) {
tmp = t_2;
} else if (z <= 2.4e-152) {
tmp = t_1;
} else if (z <= 4e-104) {
tmp = (t * x) / z;
} else if (z <= 1.14e+61) {
tmp = t_1;
} else {
tmp = t_2;
}
return tmp;
}
def code(x, y, z, t): t_1 = t * ((y - x) / y) t_2 = t * ((x - y) / z) tmp = 0 if z <= -4.9e+38: tmp = t_2 elif z <= 2.4e-152: tmp = t_1 elif z <= 4e-104: tmp = (t * x) / z elif z <= 1.14e+61: tmp = t_1 else: tmp = t_2 return tmp
function code(x, y, z, t) t_1 = Float64(t * Float64(Float64(y - x) / y)) t_2 = Float64(t * Float64(Float64(x - y) / z)) tmp = 0.0 if (z <= -4.9e+38) tmp = t_2; elseif (z <= 2.4e-152) tmp = t_1; elseif (z <= 4e-104) tmp = Float64(Float64(t * x) / z); elseif (z <= 1.14e+61) tmp = t_1; else tmp = t_2; end return tmp end
function tmp_2 = code(x, y, z, t) t_1 = t * ((y - x) / y); t_2 = t * ((x - y) / z); tmp = 0.0; if (z <= -4.9e+38) tmp = t_2; elseif (z <= 2.4e-152) tmp = t_1; elseif (z <= 4e-104) tmp = (t * x) / z; elseif (z <= 1.14e+61) tmp = t_1; else tmp = t_2; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(t * N[(N[(y - x), $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(t * N[(N[(x - y), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -4.9e+38], t$95$2, If[LessEqual[z, 2.4e-152], t$95$1, If[LessEqual[z, 4e-104], N[(N[(t * x), $MachinePrecision] / z), $MachinePrecision], If[LessEqual[z, 1.14e+61], t$95$1, t$95$2]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := t \cdot \frac{y - x}{y}\\
t_2 := t \cdot \frac{x - y}{z}\\
\mathbf{if}\;z \leq -4.9 \cdot 10^{+38}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;z \leq 2.4 \cdot 10^{-152}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 4 \cdot 10^{-104}:\\
\;\;\;\;\frac{t \cdot x}{z}\\
\mathbf{elif}\;z \leq 1.14 \cdot 10^{+61}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\end{array}
if z < -4.90000000000000002e38 or 1.13999999999999996e61 < z Initial program 97.1%
Taylor expanded in z around inf 78.5%
if -4.90000000000000002e38 < z < 2.4e-152 or 3.99999999999999971e-104 < z < 1.13999999999999996e61Initial program 99.2%
Taylor expanded in z around 0 83.9%
associate-*r/83.9%
neg-mul-183.9%
neg-sub083.9%
associate--r-83.9%
neg-sub083.9%
+-commutative83.9%
sub-neg83.9%
Simplified83.9%
if 2.4e-152 < z < 3.99999999999999971e-104Initial program 73.8%
Taylor expanded in y around 0 99.6%
Final simplification82.4%
(FPCore (x y z t)
:precision binary64
(let* ((t_1 (* t (/ (- y x) y))))
(if (<= z -4.6e+38)
(* t (/ (- x y) z))
(if (<= z 2.4e-152)
t_1
(if (<= z 4e-104)
(/ (* t x) z)
(if (<= z 1.14e+61) t_1 (/ t (/ z (- x y)))))))))
double code(double x, double y, double z, double t) {
double t_1 = t * ((y - x) / y);
double tmp;
if (z <= -4.6e+38) {
tmp = t * ((x - y) / z);
} else if (z <= 2.4e-152) {
tmp = t_1;
} else if (z <= 4e-104) {
tmp = (t * x) / z;
} else if (z <= 1.14e+61) {
tmp = t_1;
} else {
tmp = t / (z / (x - y));
}
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 = t * ((y - x) / y)
if (z <= (-4.6d+38)) then
tmp = t * ((x - y) / z)
else if (z <= 2.4d-152) then
tmp = t_1
else if (z <= 4d-104) then
tmp = (t * x) / z
else if (z <= 1.14d+61) then
tmp = t_1
else
tmp = t / (z / (x - y))
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double t_1 = t * ((y - x) / y);
double tmp;
if (z <= -4.6e+38) {
tmp = t * ((x - y) / z);
} else if (z <= 2.4e-152) {
tmp = t_1;
} else if (z <= 4e-104) {
tmp = (t * x) / z;
} else if (z <= 1.14e+61) {
tmp = t_1;
} else {
tmp = t / (z / (x - y));
}
return tmp;
}
def code(x, y, z, t): t_1 = t * ((y - x) / y) tmp = 0 if z <= -4.6e+38: tmp = t * ((x - y) / z) elif z <= 2.4e-152: tmp = t_1 elif z <= 4e-104: tmp = (t * x) / z elif z <= 1.14e+61: tmp = t_1 else: tmp = t / (z / (x - y)) return tmp
function code(x, y, z, t) t_1 = Float64(t * Float64(Float64(y - x) / y)) tmp = 0.0 if (z <= -4.6e+38) tmp = Float64(t * Float64(Float64(x - y) / z)); elseif (z <= 2.4e-152) tmp = t_1; elseif (z <= 4e-104) tmp = Float64(Float64(t * x) / z); elseif (z <= 1.14e+61) tmp = t_1; else tmp = Float64(t / Float64(z / Float64(x - y))); end return tmp end
function tmp_2 = code(x, y, z, t) t_1 = t * ((y - x) / y); tmp = 0.0; if (z <= -4.6e+38) tmp = t * ((x - y) / z); elseif (z <= 2.4e-152) tmp = t_1; elseif (z <= 4e-104) tmp = (t * x) / z; elseif (z <= 1.14e+61) tmp = t_1; else tmp = t / (z / (x - y)); end tmp_2 = tmp; end
code[x_, y_, z_, t_] := Block[{t$95$1 = N[(t * N[(N[(y - x), $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[z, -4.6e+38], N[(t * N[(N[(x - y), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 2.4e-152], t$95$1, If[LessEqual[z, 4e-104], N[(N[(t * x), $MachinePrecision] / z), $MachinePrecision], If[LessEqual[z, 1.14e+61], t$95$1, N[(t / N[(z / N[(x - y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := t \cdot \frac{y - x}{y}\\
\mathbf{if}\;z \leq -4.6 \cdot 10^{+38}:\\
\;\;\;\;t \cdot \frac{x - y}{z}\\
\mathbf{elif}\;z \leq 2.4 \cdot 10^{-152}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 4 \cdot 10^{-104}:\\
\;\;\;\;\frac{t \cdot x}{z}\\
\mathbf{elif}\;z \leq 1.14 \cdot 10^{+61}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;\frac{t}{\frac{z}{x - y}}\\
\end{array}
\end{array}
if z < -4.6000000000000002e38Initial program 96.2%
Taylor expanded in z around inf 75.7%
if -4.6000000000000002e38 < z < 2.4e-152 or 3.99999999999999971e-104 < z < 1.13999999999999996e61Initial program 99.2%
Taylor expanded in z around 0 83.9%
associate-*r/83.9%
neg-mul-183.9%
neg-sub083.9%
associate--r-83.9%
neg-sub083.9%
+-commutative83.9%
sub-neg83.9%
Simplified83.9%
if 2.4e-152 < z < 3.99999999999999971e-104Initial program 73.8%
Taylor expanded in y around 0 99.6%
if 1.13999999999999996e61 < z Initial program 97.9%
Taylor expanded in z around inf 74.4%
associate-/l*81.3%
Simplified81.3%
Final simplification82.4%
(FPCore (x y z t) :precision binary64 (if (<= y -1.45e-20) t (if (<= y 7.2e-34) (* x (/ t z)) t)))
double code(double x, double y, double z, double t) {
double tmp;
if (y <= -1.45e-20) {
tmp = t;
} else if (y <= 7.2e-34) {
tmp = x * (t / z);
} 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 (y <= (-1.45d-20)) then
tmp = t
else if (y <= 7.2d-34) then
tmp = x * (t / z)
else
tmp = t
end if
code = tmp
end function
public static double code(double x, double y, double z, double t) {
double tmp;
if (y <= -1.45e-20) {
tmp = t;
} else if (y <= 7.2e-34) {
tmp = x * (t / z);
} else {
tmp = t;
}
return tmp;
}
def code(x, y, z, t): tmp = 0 if y <= -1.45e-20: tmp = t elif y <= 7.2e-34: tmp = x * (t / z) else: tmp = t return tmp
function code(x, y, z, t) tmp = 0.0 if (y <= -1.45e-20) tmp = t; elseif (y <= 7.2e-34) tmp = Float64(x * Float64(t / z)); else tmp = t; end return tmp end
function tmp_2 = code(x, y, z, t) tmp = 0.0; if (y <= -1.45e-20) tmp = t; elseif (y <= 7.2e-34) tmp = x * (t / z); else tmp = t; end tmp_2 = tmp; end
code[x_, y_, z_, t_] := If[LessEqual[y, -1.45e-20], t, If[LessEqual[y, 7.2e-34], N[(x * N[(t / z), $MachinePrecision]), $MachinePrecision], t]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq -1.45 \cdot 10^{-20}:\\
\;\;\;\;t\\
\mathbf{elif}\;y \leq 7.2 \cdot 10^{-34}:\\
\;\;\;\;x \cdot \frac{t}{z}\\
\mathbf{else}:\\
\;\;\;\;t\\
\end{array}
\end{array}
if y < -1.45e-20 or 7.20000000000000016e-34 < y Initial program 99.8%
Taylor expanded in y around inf 59.7%
if -1.45e-20 < y < 7.20000000000000016e-34Initial program 94.0%
*-commutative94.0%
associate-*r/89.9%
associate-/l*94.1%
sub-neg94.1%
+-commutative94.1%
neg-sub094.1%
associate-+l-94.1%
sub0-neg94.1%
neg-mul-194.1%
associate-/r*94.1%
Simplified94.1%
div-inv93.9%
add-cube-cbrt92.9%
associate-*l*93.0%
pow293.0%
Applied egg-rr93.0%
Taylor expanded in y around 0 66.3%
associate-*l/69.6%
Simplified69.6%
Final simplification64.1%
(FPCore (x y z t) :precision binary64 (* t (/ (- x y) (- z y))))
double code(double x, double y, double z, double t) {
return t * ((x - y) / (z - 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 = t * ((x - y) / (z - y))
end function
public static double code(double x, double y, double z, double t) {
return t * ((x - y) / (z - y));
}
def code(x, y, z, t): return t * ((x - y) / (z - y))
function code(x, y, z, t) return Float64(t * Float64(Float64(x - y) / Float64(z - y))) end
function tmp = code(x, y, z, t) tmp = t * ((x - y) / (z - y)); end
code[x_, y_, z_, t_] := N[(t * N[(N[(x - y), $MachinePrecision] / N[(z - y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
t \cdot \frac{x - y}{z - y}
\end{array}
Initial program 97.2%
Final simplification97.2%
(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 97.2%
Taylor expanded in y around inf 37.4%
Final simplification37.4%
(FPCore (x y z t) :precision binary64 (/ t (/ (- z y) (- x y))))
double code(double x, double y, double z, double t) {
return t / ((z - y) / (x - 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 = t / ((z - y) / (x - y))
end function
public static double code(double x, double y, double z, double t) {
return t / ((z - y) / (x - y));
}
def code(x, y, z, t): return t / ((z - y) / (x - y))
function code(x, y, z, t) return Float64(t / Float64(Float64(z - y) / Float64(x - y))) end
function tmp = code(x, y, z, t) tmp = t / ((z - y) / (x - y)); end
code[x_, y_, z_, t_] := N[(t / N[(N[(z - y), $MachinePrecision] / N[(x - y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{t}{\frac{z - y}{x - y}}
\end{array}
herbie shell --seed 2023279
(FPCore (x y z t)
:name "Numeric.Signal.Multichannel:$cput from hsignal-0.2.7.1"
:precision binary64
:herbie-target
(/ t (/ (- z y) (- x y)))
(* (/ (- x y) (- z y)) t))