
(FPCore (x y z t a) :precision binary64 (- (+ x y) (/ (* (- z t) y) (- a t))))
double code(double x, double y, double z, double t, double a) {
return (x + y) - (((z - t) * y) / (a - 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 - t) * y) / (a - t))
end function
public static double code(double x, double y, double z, double t, double a) {
return (x + y) - (((z - t) * y) / (a - t));
}
def code(x, y, z, t, a): return (x + y) - (((z - t) * y) / (a - t))
function code(x, y, z, t, a) return Float64(Float64(x + y) - Float64(Float64(Float64(z - t) * y) / Float64(a - t))) end
function tmp = code(x, y, z, t, a) tmp = (x + y) - (((z - t) * y) / (a - t)); end
code[x_, y_, z_, t_, a_] := N[(N[(x + y), $MachinePrecision] - N[(N[(N[(z - t), $MachinePrecision] * y), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(x + y\right) - \frac{\left(z - t\right) \cdot y}{a - t}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 12 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y z t a) :precision binary64 (- (+ x y) (/ (* (- z t) y) (- a t))))
double code(double x, double y, double z, double t, double a) {
return (x + y) - (((z - t) * y) / (a - 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 - t) * y) / (a - t))
end function
public static double code(double x, double y, double z, double t, double a) {
return (x + y) - (((z - t) * y) / (a - t));
}
def code(x, y, z, t, a): return (x + y) - (((z - t) * y) / (a - t))
function code(x, y, z, t, a) return Float64(Float64(x + y) - Float64(Float64(Float64(z - t) * y) / Float64(a - t))) end
function tmp = code(x, y, z, t, a) tmp = (x + y) - (((z - t) * y) / (a - t)); end
code[x_, y_, z_, t_, a_] := N[(N[(x + y), $MachinePrecision] - N[(N[(N[(z - t), $MachinePrecision] * y), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(x + y\right) - \frac{\left(z - t\right) \cdot y}{a - t}
\end{array}
(FPCore (x y z t a) :precision binary64 (if (or (<= t -8.4e+158) (not (<= t 2.9e+198))) (+ (- x (* a (/ y t))) (* y (/ z t))) (- (+ x y) (* y (/ z (- a t))))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if ((t <= -8.4e+158) || !(t <= 2.9e+198)) {
tmp = (x - (a * (y / t))) + (y * (z / t));
} else {
tmp = (x + y) - (y * (z / (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 ((t <= (-8.4d+158)) .or. (.not. (t <= 2.9d+198))) then
tmp = (x - (a * (y / t))) + (y * (z / t))
else
tmp = (x + y) - (y * (z / (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 ((t <= -8.4e+158) || !(t <= 2.9e+198)) {
tmp = (x - (a * (y / t))) + (y * (z / t));
} else {
tmp = (x + y) - (y * (z / (a - t)));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if (t <= -8.4e+158) or not (t <= 2.9e+198): tmp = (x - (a * (y / t))) + (y * (z / t)) else: tmp = (x + y) - (y * (z / (a - t))) return tmp
function code(x, y, z, t, a) tmp = 0.0 if ((t <= -8.4e+158) || !(t <= 2.9e+198)) tmp = Float64(Float64(x - Float64(a * Float64(y / t))) + Float64(y * Float64(z / t))); else tmp = Float64(Float64(x + y) - Float64(y * Float64(z / Float64(a - t)))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if ((t <= -8.4e+158) || ~((t <= 2.9e+198))) tmp = (x - (a * (y / t))) + (y * (z / t)); else tmp = (x + y) - (y * (z / (a - t))); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[t, -8.4e+158], N[Not[LessEqual[t, 2.9e+198]], $MachinePrecision]], N[(N[(x - N[(a * N[(y / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(y * N[(z / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(x + y), $MachinePrecision] - N[(y * N[(z / N[(a - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;t \leq -8.4 \cdot 10^{+158} \lor \neg \left(t \leq 2.9 \cdot 10^{+198}\right):\\
\;\;\;\;\left(x - a \cdot \frac{y}{t}\right) + y \cdot \frac{z}{t}\\
\mathbf{else}:\\
\;\;\;\;\left(x + y\right) - y \cdot \frac{z}{a - t}\\
\end{array}
\end{array}
if t < -8.3999999999999996e158 or 2.9000000000000001e198 < t Initial program 57.7%
Taylor expanded in t around inf 77.5%
sub-neg77.5%
mul-1-neg77.5%
unsub-neg77.5%
associate-/l*90.3%
mul-1-neg90.3%
remove-double-neg90.3%
associate-/l*93.3%
Simplified93.3%
if -8.3999999999999996e158 < t < 2.9000000000000001e198Initial program 86.5%
Taylor expanded in z around inf 87.3%
associate-/l*90.7%
Simplified90.7%
Final simplification91.2%
(FPCore (x y z t a) :precision binary64 (if (or (<= t -4.5e+184) (not (<= t 3.2e+198))) (- x (/ a (/ t y))) (- (+ x y) (* y (/ z (- a t))))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if ((t <= -4.5e+184) || !(t <= 3.2e+198)) {
tmp = x - (a / (t / y));
} else {
tmp = (x + y) - (y * (z / (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 ((t <= (-4.5d+184)) .or. (.not. (t <= 3.2d+198))) then
tmp = x - (a / (t / y))
else
tmp = (x + y) - (y * (z / (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 ((t <= -4.5e+184) || !(t <= 3.2e+198)) {
tmp = x - (a / (t / y));
} else {
tmp = (x + y) - (y * (z / (a - t)));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if (t <= -4.5e+184) or not (t <= 3.2e+198): tmp = x - (a / (t / y)) else: tmp = (x + y) - (y * (z / (a - t))) return tmp
function code(x, y, z, t, a) tmp = 0.0 if ((t <= -4.5e+184) || !(t <= 3.2e+198)) tmp = Float64(x - Float64(a / Float64(t / y))); else tmp = Float64(Float64(x + y) - Float64(y * Float64(z / Float64(a - t)))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if ((t <= -4.5e+184) || ~((t <= 3.2e+198))) tmp = x - (a / (t / y)); else tmp = (x + y) - (y * (z / (a - t))); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[t, -4.5e+184], N[Not[LessEqual[t, 3.2e+198]], $MachinePrecision]], N[(x - N[(a / N[(t / y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(x + y), $MachinePrecision] - N[(y * N[(z / N[(a - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;t \leq -4.5 \cdot 10^{+184} \lor \neg \left(t \leq 3.2 \cdot 10^{+198}\right):\\
\;\;\;\;x - \frac{a}{\frac{t}{y}}\\
\mathbf{else}:\\
\;\;\;\;\left(x + y\right) - y \cdot \frac{z}{a - t}\\
\end{array}
\end{array}
if t < -4.50000000000000036e184 or 3.1999999999999998e198 < t Initial program 55.1%
Taylor expanded in t around -inf 76.1%
mul-1-neg76.1%
unsub-neg76.1%
*-commutative76.1%
Simplified76.1%
Taylor expanded in a around inf 70.3%
*-commutative70.3%
associate-/l*83.9%
Simplified83.9%
clear-num83.9%
un-div-inv83.8%
Applied egg-rr83.8%
associate-/r/84.0%
Simplified84.0%
*-commutative84.0%
clear-num84.0%
un-div-inv84.1%
Applied egg-rr84.1%
if -4.50000000000000036e184 < t < 3.1999999999999998e198Initial program 86.7%
Taylor expanded in z around inf 87.2%
associate-/l*90.6%
Simplified90.6%
Final simplification89.3%
(FPCore (x y z t a) :precision binary64 (if (<= t -3.2e+159) (* y (- (+ (/ z t) (/ x y)) (/ a t))) (if (<= t 3e+198) (- (+ x y) (* y (/ z (- a t)))) (- x (/ a (/ t y))))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if (t <= -3.2e+159) {
tmp = y * (((z / t) + (x / y)) - (a / t));
} else if (t <= 3e+198) {
tmp = (x + y) - (y * (z / (a - t)));
} else {
tmp = x - (a / (t / 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 (t <= (-3.2d+159)) then
tmp = y * (((z / t) + (x / y)) - (a / t))
else if (t <= 3d+198) then
tmp = (x + y) - (y * (z / (a - t)))
else
tmp = x - (a / (t / y))
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double tmp;
if (t <= -3.2e+159) {
tmp = y * (((z / t) + (x / y)) - (a / t));
} else if (t <= 3e+198) {
tmp = (x + y) - (y * (z / (a - t)));
} else {
tmp = x - (a / (t / y));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if t <= -3.2e+159: tmp = y * (((z / t) + (x / y)) - (a / t)) elif t <= 3e+198: tmp = (x + y) - (y * (z / (a - t))) else: tmp = x - (a / (t / y)) return tmp
function code(x, y, z, t, a) tmp = 0.0 if (t <= -3.2e+159) tmp = Float64(y * Float64(Float64(Float64(z / t) + Float64(x / y)) - Float64(a / t))); elseif (t <= 3e+198) tmp = Float64(Float64(x + y) - Float64(y * Float64(z / Float64(a - t)))); else tmp = Float64(x - Float64(a / Float64(t / y))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if (t <= -3.2e+159) tmp = y * (((z / t) + (x / y)) - (a / t)); elseif (t <= 3e+198) tmp = (x + y) - (y * (z / (a - t))); else tmp = x - (a / (t / y)); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[LessEqual[t, -3.2e+159], N[(y * N[(N[(N[(z / t), $MachinePrecision] + N[(x / y), $MachinePrecision]), $MachinePrecision] - N[(a / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[t, 3e+198], N[(N[(x + y), $MachinePrecision] - N[(y * N[(z / N[(a - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x - N[(a / N[(t / y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;t \leq -3.2 \cdot 10^{+159}:\\
\;\;\;\;y \cdot \left(\left(\frac{z}{t} + \frac{x}{y}\right) - \frac{a}{t}\right)\\
\mathbf{elif}\;t \leq 3 \cdot 10^{+198}:\\
\;\;\;\;\left(x + y\right) - y \cdot \frac{z}{a - t}\\
\mathbf{else}:\\
\;\;\;\;x - \frac{a}{\frac{t}{y}}\\
\end{array}
\end{array}
if t < -3.19999999999999985e159Initial program 60.4%
Taylor expanded in t around -inf 76.9%
mul-1-neg76.9%
unsub-neg76.9%
*-commutative76.9%
Simplified76.9%
Taylor expanded in y around inf 91.6%
if -3.19999999999999985e159 < t < 3.00000000000000019e198Initial program 86.5%
Taylor expanded in z around inf 87.3%
associate-/l*90.7%
Simplified90.7%
if 3.00000000000000019e198 < t Initial program 55.1%
Taylor expanded in t around -inf 78.1%
mul-1-neg78.1%
unsub-neg78.1%
*-commutative78.1%
Simplified78.1%
Taylor expanded in a around inf 74.2%
*-commutative74.2%
associate-/l*81.4%
Simplified81.4%
clear-num81.4%
un-div-inv81.2%
Applied egg-rr81.2%
associate-/r/81.4%
Simplified81.4%
*-commutative81.4%
clear-num81.4%
un-div-inv81.6%
Applied egg-rr81.6%
Final simplification89.8%
(FPCore (x y z t a) :precision binary64 (if (or (<= a -4.6e-48) (not (<= a 3.2e-27))) (- (+ x y) (* y (/ z a))) (- x (* y (/ z (- a t))))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if ((a <= -4.6e-48) || !(a <= 3.2e-27)) {
tmp = (x + y) - (y * (z / a));
} else {
tmp = x - (y * (z / (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 ((a <= (-4.6d-48)) .or. (.not. (a <= 3.2d-27))) then
tmp = (x + y) - (y * (z / a))
else
tmp = x - (y * (z / (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 ((a <= -4.6e-48) || !(a <= 3.2e-27)) {
tmp = (x + y) - (y * (z / a));
} else {
tmp = x - (y * (z / (a - t)));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if (a <= -4.6e-48) or not (a <= 3.2e-27): tmp = (x + y) - (y * (z / a)) else: tmp = x - (y * (z / (a - t))) return tmp
function code(x, y, z, t, a) tmp = 0.0 if ((a <= -4.6e-48) || !(a <= 3.2e-27)) tmp = Float64(Float64(x + y) - Float64(y * Float64(z / a))); else tmp = Float64(x - Float64(y * Float64(z / Float64(a - t)))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if ((a <= -4.6e-48) || ~((a <= 3.2e-27))) tmp = (x + y) - (y * (z / a)); else tmp = x - (y * (z / (a - t))); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[a, -4.6e-48], N[Not[LessEqual[a, 3.2e-27]], $MachinePrecision]], N[(N[(x + y), $MachinePrecision] - N[(y * N[(z / a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x - N[(y * N[(z / N[(a - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;a \leq -4.6 \cdot 10^{-48} \lor \neg \left(a \leq 3.2 \cdot 10^{-27}\right):\\
\;\;\;\;\left(x + y\right) - y \cdot \frac{z}{a}\\
\mathbf{else}:\\
\;\;\;\;x - y \cdot \frac{z}{a - t}\\
\end{array}
\end{array}
if a < -4.6000000000000001e-48 or 3.19999999999999991e-27 < a Initial program 80.3%
Taylor expanded in t around 0 82.4%
associate-/l*87.8%
Simplified87.8%
if -4.6000000000000001e-48 < a < 3.19999999999999991e-27Initial program 81.1%
Taylor expanded in z around inf 80.6%
associate-/l*79.7%
Simplified79.7%
Taylor expanded in x around inf 86.6%
Final simplification87.2%
(FPCore (x y z t a) :precision binary64 (if (or (<= a -2.15e+111) (not (<= a 1.9e+170))) (+ x y) (- x (* y (/ z (- a t))))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if ((a <= -2.15e+111) || !(a <= 1.9e+170)) {
tmp = x + y;
} else {
tmp = x - (y * (z / (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 ((a <= (-2.15d+111)) .or. (.not. (a <= 1.9d+170))) then
tmp = x + y
else
tmp = x - (y * (z / (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 ((a <= -2.15e+111) || !(a <= 1.9e+170)) {
tmp = x + y;
} else {
tmp = x - (y * (z / (a - t)));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if (a <= -2.15e+111) or not (a <= 1.9e+170): tmp = x + y else: tmp = x - (y * (z / (a - t))) return tmp
function code(x, y, z, t, a) tmp = 0.0 if ((a <= -2.15e+111) || !(a <= 1.9e+170)) tmp = Float64(x + y); else tmp = Float64(x - Float64(y * Float64(z / Float64(a - t)))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if ((a <= -2.15e+111) || ~((a <= 1.9e+170))) tmp = x + y; else tmp = x - (y * (z / (a - t))); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[a, -2.15e+111], N[Not[LessEqual[a, 1.9e+170]], $MachinePrecision]], N[(x + y), $MachinePrecision], N[(x - N[(y * N[(z / N[(a - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;a \leq -2.15 \cdot 10^{+111} \lor \neg \left(a \leq 1.9 \cdot 10^{+170}\right):\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;x - y \cdot \frac{z}{a - t}\\
\end{array}
\end{array}
if a < -2.14999999999999997e111 or 1.8999999999999999e170 < a Initial program 80.0%
sub-neg80.0%
+-commutative80.0%
distribute-frac-neg80.0%
distribute-rgt-neg-out80.0%
associate-/l*93.5%
fma-define93.5%
distribute-frac-neg93.5%
distribute-neg-frac293.5%
sub-neg93.5%
distribute-neg-in93.5%
remove-double-neg93.5%
+-commutative93.5%
sub-neg93.5%
Simplified93.5%
Taylor expanded in a around inf 88.0%
+-commutative88.0%
Simplified88.0%
if -2.14999999999999997e111 < a < 1.8999999999999999e170Initial program 80.9%
Taylor expanded in z around inf 80.9%
associate-/l*82.9%
Simplified82.9%
Taylor expanded in x around inf 83.8%
Final simplification85.0%
(FPCore (x y z t a) :precision binary64 (if (or (<= a -2.05e-50) (not (<= a 8.8e-27))) (+ x y) (+ x (* y (/ z t)))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if ((a <= -2.05e-50) || !(a <= 8.8e-27)) {
tmp = x + y;
} else {
tmp = x + (y * (z / 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 ((a <= (-2.05d-50)) .or. (.not. (a <= 8.8d-27))) then
tmp = x + y
else
tmp = x + (y * (z / t))
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double tmp;
if ((a <= -2.05e-50) || !(a <= 8.8e-27)) {
tmp = x + y;
} else {
tmp = x + (y * (z / t));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if (a <= -2.05e-50) or not (a <= 8.8e-27): tmp = x + y else: tmp = x + (y * (z / t)) return tmp
function code(x, y, z, t, a) tmp = 0.0 if ((a <= -2.05e-50) || !(a <= 8.8e-27)) tmp = Float64(x + y); else tmp = Float64(x + Float64(y * Float64(z / t))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if ((a <= -2.05e-50) || ~((a <= 8.8e-27))) tmp = x + y; else tmp = x + (y * (z / t)); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[a, -2.05e-50], N[Not[LessEqual[a, 8.8e-27]], $MachinePrecision]], N[(x + y), $MachinePrecision], N[(x + N[(y * N[(z / t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;a \leq -2.05 \cdot 10^{-50} \lor \neg \left(a \leq 8.8 \cdot 10^{-27}\right):\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot \frac{z}{t}\\
\end{array}
\end{array}
if a < -2.04999999999999993e-50 or 8.79999999999999948e-27 < a Initial program 80.1%
sub-neg80.1%
+-commutative80.1%
distribute-frac-neg80.1%
distribute-rgt-neg-out80.1%
associate-/l*89.5%
fma-define89.5%
distribute-frac-neg89.5%
distribute-neg-frac289.5%
sub-neg89.5%
distribute-neg-in89.5%
remove-double-neg89.5%
+-commutative89.5%
sub-neg89.5%
Simplified89.5%
Taylor expanded in a around inf 77.4%
+-commutative77.4%
Simplified77.4%
if -2.04999999999999993e-50 < a < 8.79999999999999948e-27Initial program 81.2%
Taylor expanded in t around -inf 77.4%
mul-1-neg77.4%
unsub-neg77.4%
*-commutative77.4%
Simplified77.4%
Taylor expanded in a around 0 75.8%
+-commutative75.8%
associate-/l*77.0%
Simplified77.0%
Final simplification77.2%
(FPCore (x y z t a) :precision binary64 (if (or (<= z -1.4e+168) (not (<= z 5e+164))) (* y (/ z (- t a))) (+ x y)))
double code(double x, double y, double z, double t, double a) {
double tmp;
if ((z <= -1.4e+168) || !(z <= 5e+164)) {
tmp = y * (z / (t - a));
} 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 <= (-1.4d+168)) .or. (.not. (z <= 5d+164))) then
tmp = y * (z / (t - a))
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 <= -1.4e+168) || !(z <= 5e+164)) {
tmp = y * (z / (t - a));
} else {
tmp = x + y;
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if (z <= -1.4e+168) or not (z <= 5e+164): tmp = y * (z / (t - a)) else: tmp = x + y return tmp
function code(x, y, z, t, a) tmp = 0.0 if ((z <= -1.4e+168) || !(z <= 5e+164)) tmp = Float64(y * Float64(z / Float64(t - a))); else tmp = Float64(x + y); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if ((z <= -1.4e+168) || ~((z <= 5e+164))) tmp = y * (z / (t - a)); else tmp = x + y; end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[Or[LessEqual[z, -1.4e+168], N[Not[LessEqual[z, 5e+164]], $MachinePrecision]], N[(y * N[(z / N[(t - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x + y), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -1.4 \cdot 10^{+168} \lor \neg \left(z \leq 5 \cdot 10^{+164}\right):\\
\;\;\;\;y \cdot \frac{z}{t - a}\\
\mathbf{else}:\\
\;\;\;\;x + y\\
\end{array}
\end{array}
if z < -1.39999999999999995e168 or 4.9999999999999995e164 < z Initial program 85.6%
sub-neg85.6%
+-commutative85.6%
distribute-frac-neg85.6%
distribute-rgt-neg-out85.6%
associate-/l*93.5%
fma-define93.5%
distribute-frac-neg93.5%
distribute-neg-frac293.5%
sub-neg93.5%
distribute-neg-in93.5%
remove-double-neg93.5%
+-commutative93.5%
sub-neg93.5%
Simplified93.5%
Taylor expanded in z around inf 53.3%
associate-/l*59.1%
Simplified59.1%
if -1.39999999999999995e168 < z < 4.9999999999999995e164Initial program 79.1%
sub-neg79.1%
+-commutative79.1%
distribute-frac-neg79.1%
distribute-rgt-neg-out79.1%
associate-/l*81.7%
fma-define81.6%
distribute-frac-neg81.6%
distribute-neg-frac281.6%
sub-neg81.6%
distribute-neg-in81.6%
remove-double-neg81.6%
+-commutative81.6%
sub-neg81.6%
Simplified81.6%
Taylor expanded in a around inf 71.5%
+-commutative71.5%
Simplified71.5%
Final simplification68.6%
(FPCore (x y z t a) :precision binary64 (if (<= z -3.4e+168) (* z (/ y (- t a))) (if (<= z 3.7e+164) (+ x y) (* y (/ z (- t a))))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if (z <= -3.4e+168) {
tmp = z * (y / (t - a));
} else if (z <= 3.7e+164) {
tmp = x + y;
} else {
tmp = y * (z / (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 <= (-3.4d+168)) then
tmp = z * (y / (t - a))
else if (z <= 3.7d+164) then
tmp = x + y
else
tmp = y * (z / (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 <= -3.4e+168) {
tmp = z * (y / (t - a));
} else if (z <= 3.7e+164) {
tmp = x + y;
} else {
tmp = y * (z / (t - a));
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if z <= -3.4e+168: tmp = z * (y / (t - a)) elif z <= 3.7e+164: tmp = x + y else: tmp = y * (z / (t - a)) return tmp
function code(x, y, z, t, a) tmp = 0.0 if (z <= -3.4e+168) tmp = Float64(z * Float64(y / Float64(t - a))); elseif (z <= 3.7e+164) tmp = Float64(x + y); else tmp = Float64(y * Float64(z / Float64(t - a))); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if (z <= -3.4e+168) tmp = z * (y / (t - a)); elseif (z <= 3.7e+164) tmp = x + y; else tmp = y * (z / (t - a)); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[LessEqual[z, -3.4e+168], N[(z * N[(y / N[(t - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[z, 3.7e+164], N[(x + y), $MachinePrecision], N[(y * N[(z / N[(t - a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -3.4 \cdot 10^{+168}:\\
\;\;\;\;z \cdot \frac{y}{t - a}\\
\mathbf{elif}\;z \leq 3.7 \cdot 10^{+164}:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;y \cdot \frac{z}{t - a}\\
\end{array}
\end{array}
if z < -3.40000000000000003e168Initial program 93.4%
sub-neg93.4%
+-commutative93.4%
distribute-frac-neg93.4%
distribute-rgt-neg-out93.4%
associate-/l*96.4%
fma-define96.4%
distribute-frac-neg96.4%
distribute-neg-frac296.4%
sub-neg96.4%
distribute-neg-in96.4%
remove-double-neg96.4%
+-commutative96.4%
sub-neg96.4%
Simplified96.4%
Taylor expanded in z around inf 58.4%
*-commutative58.4%
*-lft-identity58.4%
times-frac58.0%
/-rgt-identity58.0%
Simplified58.0%
if -3.40000000000000003e168 < z < 3.7000000000000001e164Initial program 79.1%
sub-neg79.1%
+-commutative79.1%
distribute-frac-neg79.1%
distribute-rgt-neg-out79.1%
associate-/l*81.7%
fma-define81.6%
distribute-frac-neg81.6%
distribute-neg-frac281.6%
sub-neg81.6%
distribute-neg-in81.6%
remove-double-neg81.6%
+-commutative81.6%
sub-neg81.6%
Simplified81.6%
Taylor expanded in a around inf 71.5%
+-commutative71.5%
Simplified71.5%
if 3.7000000000000001e164 < z Initial program 79.1%
sub-neg79.1%
+-commutative79.1%
distribute-frac-neg79.1%
distribute-rgt-neg-out79.1%
associate-/l*91.1%
fma-define91.1%
distribute-frac-neg91.1%
distribute-neg-frac291.1%
sub-neg91.1%
distribute-neg-in91.1%
remove-double-neg91.1%
+-commutative91.1%
sub-neg91.1%
Simplified91.1%
Taylor expanded in z around inf 49.1%
associate-/l*62.9%
Simplified62.9%
Final simplification69.0%
(FPCore (x y z t a) :precision binary64 (if (<= y -8.9e+102) y (if (<= y 2.35e+157) x y)))
double code(double x, double y, double z, double t, double a) {
double tmp;
if (y <= -8.9e+102) {
tmp = y;
} else if (y <= 2.35e+157) {
tmp = x;
} else {
tmp = 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 (y <= (-8.9d+102)) then
tmp = y
else if (y <= 2.35d+157) then
tmp = x
else
tmp = y
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a) {
double tmp;
if (y <= -8.9e+102) {
tmp = y;
} else if (y <= 2.35e+157) {
tmp = x;
} else {
tmp = y;
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if y <= -8.9e+102: tmp = y elif y <= 2.35e+157: tmp = x else: tmp = y return tmp
function code(x, y, z, t, a) tmp = 0.0 if (y <= -8.9e+102) tmp = y; elseif (y <= 2.35e+157) tmp = x; else tmp = y; end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if (y <= -8.9e+102) tmp = y; elseif (y <= 2.35e+157) tmp = x; else tmp = y; end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[LessEqual[y, -8.9e+102], y, If[LessEqual[y, 2.35e+157], x, y]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq -8.9 \cdot 10^{+102}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.35 \cdot 10^{+157}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\end{array}
if y < -8.8999999999999999e102 or 2.35000000000000015e157 < y Initial program 52.6%
sub-neg52.6%
+-commutative52.6%
distribute-frac-neg52.6%
distribute-rgt-neg-out52.6%
associate-/l*66.1%
fma-define66.0%
distribute-frac-neg66.0%
distribute-neg-frac266.0%
sub-neg66.0%
distribute-neg-in66.0%
remove-double-neg66.0%
+-commutative66.0%
sub-neg66.0%
Simplified66.0%
Taylor expanded in a around inf 46.3%
+-commutative46.3%
Simplified46.3%
Taylor expanded in y around inf 40.2%
if -8.8999999999999999e102 < y < 2.35000000000000015e157Initial program 91.0%
sub-neg91.0%
+-commutative91.0%
distribute-frac-neg91.0%
distribute-rgt-neg-out91.0%
associate-/l*91.1%
fma-define91.2%
distribute-frac-neg91.2%
distribute-neg-frac291.2%
sub-neg91.2%
distribute-neg-in91.2%
remove-double-neg91.2%
+-commutative91.2%
sub-neg91.2%
Simplified91.2%
Taylor expanded in t around inf 64.2%
distribute-rgt1-in64.2%
metadata-eval64.2%
mul0-lft64.2%
Simplified64.2%
Taylor expanded in x around 0 64.2%
(FPCore (x y z t a) :precision binary64 (if (<= z 3.9e+235) (+ x y) (* y (/ z t))))
double code(double x, double y, double z, double t, double a) {
double tmp;
if (z <= 3.9e+235) {
tmp = x + y;
} else {
tmp = y * (z / 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 <= 3.9d+235) then
tmp = x + y
else
tmp = y * (z / 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 <= 3.9e+235) {
tmp = x + y;
} else {
tmp = y * (z / t);
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if z <= 3.9e+235: tmp = x + y else: tmp = y * (z / t) return tmp
function code(x, y, z, t, a) tmp = 0.0 if (z <= 3.9e+235) tmp = Float64(x + y); else tmp = Float64(y * Float64(z / t)); end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if (z <= 3.9e+235) tmp = x + y; else tmp = y * (z / t); end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[LessEqual[z, 3.9e+235], N[(x + y), $MachinePrecision], N[(y * N[(z / t), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq 3.9 \cdot 10^{+235}:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;y \cdot \frac{z}{t}\\
\end{array}
\end{array}
if z < 3.9000000000000003e235Initial program 81.3%
sub-neg81.3%
+-commutative81.3%
distribute-frac-neg81.3%
distribute-rgt-neg-out81.3%
associate-/l*83.8%
fma-define83.8%
distribute-frac-neg83.8%
distribute-neg-frac283.8%
sub-neg83.8%
distribute-neg-in83.8%
remove-double-neg83.8%
+-commutative83.8%
sub-neg83.8%
Simplified83.8%
Taylor expanded in a around inf 66.3%
+-commutative66.3%
Simplified66.3%
if 3.9000000000000003e235 < z Initial program 73.0%
sub-neg73.0%
+-commutative73.0%
distribute-frac-neg73.0%
distribute-rgt-neg-out73.0%
associate-/l*90.9%
fma-define90.9%
distribute-frac-neg90.9%
distribute-neg-frac290.9%
sub-neg90.9%
distribute-neg-in90.9%
remove-double-neg90.9%
+-commutative90.9%
sub-neg90.9%
Simplified90.9%
Taylor expanded in z around inf 45.5%
Taylor expanded in t around inf 45.7%
associate-/l*55.5%
Simplified55.5%
Final simplification65.4%
(FPCore (x y z t a) :precision binary64 (if (<= t 2.9e+198) (+ x y) x))
double code(double x, double y, double z, double t, double a) {
double tmp;
if (t <= 2.9e+198) {
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 (t <= 2.9d+198) 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 (t <= 2.9e+198) {
tmp = x + y;
} else {
tmp = x;
}
return tmp;
}
def code(x, y, z, t, a): tmp = 0 if t <= 2.9e+198: tmp = x + y else: tmp = x return tmp
function code(x, y, z, t, a) tmp = 0.0 if (t <= 2.9e+198) tmp = Float64(x + y); else tmp = x; end return tmp end
function tmp_2 = code(x, y, z, t, a) tmp = 0.0; if (t <= 2.9e+198) tmp = x + y; else tmp = x; end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := If[LessEqual[t, 2.9e+198], N[(x + y), $MachinePrecision], x]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;t \leq 2.9 \cdot 10^{+198}:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\end{array}
if t < 2.9000000000000001e198Initial program 83.5%
sub-neg83.5%
+-commutative83.5%
distribute-frac-neg83.5%
distribute-rgt-neg-out83.5%
associate-/l*86.9%
fma-define86.8%
distribute-frac-neg86.8%
distribute-neg-frac286.8%
sub-neg86.8%
distribute-neg-in86.8%
remove-double-neg86.8%
+-commutative86.8%
sub-neg86.8%
Simplified86.8%
Taylor expanded in a around inf 64.4%
+-commutative64.4%
Simplified64.4%
if 2.9000000000000001e198 < t Initial program 55.1%
sub-neg55.1%
+-commutative55.1%
distribute-frac-neg55.1%
distribute-rgt-neg-out55.1%
associate-/l*62.7%
fma-define62.5%
distribute-frac-neg62.5%
distribute-neg-frac262.5%
sub-neg62.5%
distribute-neg-in62.5%
remove-double-neg62.5%
+-commutative62.5%
sub-neg62.5%
Simplified62.5%
Taylor expanded in t around inf 70.1%
distribute-rgt1-in70.1%
metadata-eval70.1%
mul0-lft70.1%
Simplified70.1%
Taylor expanded in x around 0 70.1%
Final simplification65.0%
(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 80.6%
sub-neg80.6%
+-commutative80.6%
distribute-frac-neg80.6%
distribute-rgt-neg-out80.6%
associate-/l*84.4%
fma-define84.4%
distribute-frac-neg84.4%
distribute-neg-frac284.4%
sub-neg84.4%
distribute-neg-in84.4%
remove-double-neg84.4%
+-commutative84.4%
sub-neg84.4%
Simplified84.4%
Taylor expanded in t around inf 50.8%
distribute-rgt1-in50.8%
metadata-eval50.8%
mul0-lft50.8%
Simplified50.8%
Taylor expanded in x around 0 50.8%
(FPCore (x y z t a)
:precision binary64
(let* ((t_1 (- (+ y x) (* (* (- z t) (/ 1.0 (- a t))) y)))
(t_2 (- (+ x y) (/ (* (- z t) y) (- a t)))))
(if (< t_2 -1.3664970889390727e-7)
t_1
(if (< t_2 1.4754293444577233e-239)
(/ (- (* y (- a z)) (* x t)) (- a t))
t_1))))
double code(double x, double y, double z, double t, double a) {
double t_1 = (y + x) - (((z - t) * (1.0 / (a - t))) * y);
double t_2 = (x + y) - (((z - t) * y) / (a - t));
double tmp;
if (t_2 < -1.3664970889390727e-7) {
tmp = t_1;
} else if (t_2 < 1.4754293444577233e-239) {
tmp = ((y * (a - z)) - (x * t)) / (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) :: t_2
real(8) :: tmp
t_1 = (y + x) - (((z - t) * (1.0d0 / (a - t))) * y)
t_2 = (x + y) - (((z - t) * y) / (a - t))
if (t_2 < (-1.3664970889390727d-7)) then
tmp = t_1
else if (t_2 < 1.4754293444577233d-239) then
tmp = ((y * (a - z)) - (x * t)) / (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 = (y + x) - (((z - t) * (1.0 / (a - t))) * y);
double t_2 = (x + y) - (((z - t) * y) / (a - t));
double tmp;
if (t_2 < -1.3664970889390727e-7) {
tmp = t_1;
} else if (t_2 < 1.4754293444577233e-239) {
tmp = ((y * (a - z)) - (x * t)) / (a - t);
} else {
tmp = t_1;
}
return tmp;
}
def code(x, y, z, t, a): t_1 = (y + x) - (((z - t) * (1.0 / (a - t))) * y) t_2 = (x + y) - (((z - t) * y) / (a - t)) tmp = 0 if t_2 < -1.3664970889390727e-7: tmp = t_1 elif t_2 < 1.4754293444577233e-239: tmp = ((y * (a - z)) - (x * t)) / (a - t) else: tmp = t_1 return tmp
function code(x, y, z, t, a) t_1 = Float64(Float64(y + x) - Float64(Float64(Float64(z - t) * Float64(1.0 / Float64(a - t))) * y)) t_2 = Float64(Float64(x + y) - Float64(Float64(Float64(z - t) * y) / Float64(a - t))) tmp = 0.0 if (t_2 < -1.3664970889390727e-7) tmp = t_1; elseif (t_2 < 1.4754293444577233e-239) tmp = Float64(Float64(Float64(y * Float64(a - z)) - Float64(x * t)) / Float64(a - t)); else tmp = t_1; end return tmp end
function tmp_2 = code(x, y, z, t, a) t_1 = (y + x) - (((z - t) * (1.0 / (a - t))) * y); t_2 = (x + y) - (((z - t) * y) / (a - t)); tmp = 0.0; if (t_2 < -1.3664970889390727e-7) tmp = t_1; elseif (t_2 < 1.4754293444577233e-239) tmp = ((y * (a - z)) - (x * t)) / (a - t); else tmp = t_1; end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_] := Block[{t$95$1 = N[(N[(y + x), $MachinePrecision] - N[(N[(N[(z - t), $MachinePrecision] * N[(1.0 / N[(a - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * y), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[(x + y), $MachinePrecision] - N[(N[(N[(z - t), $MachinePrecision] * y), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[Less[t$95$2, -1.3664970889390727e-7], t$95$1, If[Less[t$95$2, 1.4754293444577233e-239], N[(N[(N[(y * N[(a - z), $MachinePrecision]), $MachinePrecision] - N[(x * t), $MachinePrecision]), $MachinePrecision] / N[(a - t), $MachinePrecision]), $MachinePrecision], t$95$1]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \left(y + x\right) - \left(\left(z - t\right) \cdot \frac{1}{a - t}\right) \cdot y\\
t_2 := \left(x + y\right) - \frac{\left(z - t\right) \cdot y}{a - t}\\
\mathbf{if}\;t\_2 < -1.3664970889390727 \cdot 10^{-7}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;t\_2 < 1.4754293444577233 \cdot 10^{-239}:\\
\;\;\;\;\frac{y \cdot \left(a - z\right) - x \cdot t}{a - t}\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
herbie shell --seed 2024180
(FPCore (x y z t a)
:name "Graphics.Rendering.Plot.Render.Plot.Axis:renderAxisTick from plot-0.2.3.4, B"
:precision binary64
:alt
(! :herbie-platform default (if (< (- (+ x y) (/ (* (- z t) y) (- a t))) -13664970889390727/100000000000000000000000) (- (+ y x) (* (* (- z t) (/ 1 (- a t))) y)) (if (< (- (+ x y) (/ (* (- z t) y) (- a t))) 14754293444577233/1000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (/ (- (* y (- a z)) (* x t)) (- a t)) (- (+ y x) (* (* (- z t) (/ 1 (- a t))) y)))))
(- (+ x y) (/ (* (- z t) y) (- a t))))