
(FPCore (x y z t a b c i) :precision binary64 (+ (+ (+ (* x y) (* z t)) (* a b)) (* c i)))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
return (((x * y) + (z * t)) + (a * b)) + (c * i);
}
real(8) function code(x, y, z, t, a, b, c, i)
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), intent (in) :: b
real(8), intent (in) :: c
real(8), intent (in) :: i
code = (((x * y) + (z * t)) + (a * b)) + (c * i)
end function
public static double code(double x, double y, double z, double t, double a, double b, double c, double i) {
return (((x * y) + (z * t)) + (a * b)) + (c * i);
}
def code(x, y, z, t, a, b, c, i): return (((x * y) + (z * t)) + (a * b)) + (c * i)
function code(x, y, z, t, a, b, c, i) return Float64(Float64(Float64(Float64(x * y) + Float64(z * t)) + Float64(a * b)) + Float64(c * i)) end
function tmp = code(x, y, z, t, a, b, c, i) tmp = (((x * y) + (z * t)) + (a * b)) + (c * i); end
code[x_, y_, z_, t_, a_, b_, c_, i_] := N[(N[(N[(N[(x * y), $MachinePrecision] + N[(z * t), $MachinePrecision]), $MachinePrecision] + N[(a * b), $MachinePrecision]), $MachinePrecision] + N[(c * i), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(\left(x \cdot y + z \cdot t\right) + a \cdot b\right) + c \cdot i
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 16 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y z t a b c i) :precision binary64 (+ (+ (+ (* x y) (* z t)) (* a b)) (* c i)))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
return (((x * y) + (z * t)) + (a * b)) + (c * i);
}
real(8) function code(x, y, z, t, a, b, c, i)
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), intent (in) :: b
real(8), intent (in) :: c
real(8), intent (in) :: i
code = (((x * y) + (z * t)) + (a * b)) + (c * i)
end function
public static double code(double x, double y, double z, double t, double a, double b, double c, double i) {
return (((x * y) + (z * t)) + (a * b)) + (c * i);
}
def code(x, y, z, t, a, b, c, i): return (((x * y) + (z * t)) + (a * b)) + (c * i)
function code(x, y, z, t, a, b, c, i) return Float64(Float64(Float64(Float64(x * y) + Float64(z * t)) + Float64(a * b)) + Float64(c * i)) end
function tmp = code(x, y, z, t, a, b, c, i) tmp = (((x * y) + (z * t)) + (a * b)) + (c * i); end
code[x_, y_, z_, t_, a_, b_, c_, i_] := N[(N[(N[(N[(x * y), $MachinePrecision] + N[(z * t), $MachinePrecision]), $MachinePrecision] + N[(a * b), $MachinePrecision]), $MachinePrecision] + N[(c * i), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(\left(x \cdot y + z \cdot t\right) + a \cdot b\right) + c \cdot i
\end{array}
(FPCore (x y z t a b c i) :precision binary64 (fma z t (fma y x (fma i c (* a b)))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
return fma(z, t, fma(y, x, fma(i, c, (a * b))));
}
function code(x, y, z, t, a, b, c, i) return fma(z, t, fma(y, x, fma(i, c, Float64(a * b)))) end
code[x_, y_, z_, t_, a_, b_, c_, i_] := N[(z * t + N[(y * x + N[(i * c + N[(a * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\mathsf{fma}\left(z, t, \mathsf{fma}\left(y, x, \mathsf{fma}\left(i, c, a \cdot b\right)\right)\right)
\end{array}
Initial program 96.4%
lift-+.f64N/A
lift-+.f64N/A
associate-+l+N/A
lift-+.f64N/A
+-commutativeN/A
associate-+l+N/A
lift-*.f64N/A
lower-fma.f64N/A
lift-*.f64N/A
*-commutativeN/A
lower-fma.f64N/A
+-commutativeN/A
lift-*.f64N/A
*-commutativeN/A
lower-fma.f6499.2
lift-*.f64N/A
*-commutativeN/A
lower-*.f6499.2
Applied rewrites99.2%
Final simplification99.2%
(FPCore (x y z t a b c i)
:precision binary64
(let* ((t_1 (fma z t (* a b))))
(if (<= (* a b) -1e+59)
t_1
(if (<= (* a b) 5e-111)
(fma i c (* x y))
(if (<= (* a b) 5e+94) (fma i c (* t z)) t_1)))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double t_1 = fma(z, t, (a * b));
double tmp;
if ((a * b) <= -1e+59) {
tmp = t_1;
} else if ((a * b) <= 5e-111) {
tmp = fma(i, c, (x * y));
} else if ((a * b) <= 5e+94) {
tmp = fma(i, c, (t * z));
} else {
tmp = t_1;
}
return tmp;
}
function code(x, y, z, t, a, b, c, i) t_1 = fma(z, t, Float64(a * b)) tmp = 0.0 if (Float64(a * b) <= -1e+59) tmp = t_1; elseif (Float64(a * b) <= 5e-111) tmp = fma(i, c, Float64(x * y)); elseif (Float64(a * b) <= 5e+94) tmp = fma(i, c, Float64(t * z)); else tmp = t_1; end return tmp end
code[x_, y_, z_, t_, a_, b_, c_, i_] := Block[{t$95$1 = N[(z * t + N[(a * b), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[N[(a * b), $MachinePrecision], -1e+59], t$95$1, If[LessEqual[N[(a * b), $MachinePrecision], 5e-111], N[(i * c + N[(x * y), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[(a * b), $MachinePrecision], 5e+94], N[(i * c + N[(t * z), $MachinePrecision]), $MachinePrecision], t$95$1]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \mathsf{fma}\left(z, t, a \cdot b\right)\\
\mathbf{if}\;a \cdot b \leq -1 \cdot 10^{+59}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;a \cdot b \leq 5 \cdot 10^{-111}:\\
\;\;\;\;\mathsf{fma}\left(i, c, x \cdot y\right)\\
\mathbf{elif}\;a \cdot b \leq 5 \cdot 10^{+94}:\\
\;\;\;\;\mathsf{fma}\left(i, c, t \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if (*.f64 a b) < -9.99999999999999972e58 or 5.0000000000000001e94 < (*.f64 a b) Initial program 93.6%
Taylor expanded in x around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f6485.6
Applied rewrites85.6%
Taylor expanded in c around 0
Applied rewrites76.8%
Applied rewrites79.4%
if -9.99999999999999972e58 < (*.f64 a b) < 5.0000000000000003e-111Initial program 97.7%
Taylor expanded in z around inf
associate-+r+N/A
distribute-lft-inN/A
*-commutativeN/A
associate-*r/N/A
*-commutativeN/A
associate-/l*N/A
*-inversesN/A
*-rgt-identityN/A
lower-fma.f64N/A
+-commutativeN/A
*-commutativeN/A
associate-/l*N/A
*-commutativeN/A
lower-fma.f64N/A
lower-/.f64N/A
*-commutativeN/A
lower-*.f6494.8
Applied rewrites94.8%
Taylor expanded in x around inf
Applied rewrites71.3%
lift-+.f64N/A
+-commutativeN/A
lift-*.f64N/A
*-commutativeN/A
lower-fma.f6471.3
Applied rewrites71.3%
if 5.0000000000000003e-111 < (*.f64 a b) < 5.0000000000000001e94Initial program 97.7%
Taylor expanded in a around 0
*-commutativeN/A
lower-fma.f64N/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6491.2
Applied rewrites91.2%
Taylor expanded in x around 0
Applied rewrites72.7%
Final simplification74.0%
(FPCore (x y z t a b c i)
:precision binary64
(if (<= (* t z) -5e+96)
(fma z t (fma a b (* x y)))
(if (<= (* t z) 2e+75)
(fma x y (fma c i (* a b)))
(fma z t (fma c i (* x y))))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double tmp;
if ((t * z) <= -5e+96) {
tmp = fma(z, t, fma(a, b, (x * y)));
} else if ((t * z) <= 2e+75) {
tmp = fma(x, y, fma(c, i, (a * b)));
} else {
tmp = fma(z, t, fma(c, i, (x * y)));
}
return tmp;
}
function code(x, y, z, t, a, b, c, i) tmp = 0.0 if (Float64(t * z) <= -5e+96) tmp = fma(z, t, fma(a, b, Float64(x * y))); elseif (Float64(t * z) <= 2e+75) tmp = fma(x, y, fma(c, i, Float64(a * b))); else tmp = fma(z, t, fma(c, i, Float64(x * y))); end return tmp end
code[x_, y_, z_, t_, a_, b_, c_, i_] := If[LessEqual[N[(t * z), $MachinePrecision], -5e+96], N[(z * t + N[(a * b + N[(x * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[(t * z), $MachinePrecision], 2e+75], N[(x * y + N[(c * i + N[(a * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(z * t + N[(c * i + N[(x * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;t \cdot z \leq -5 \cdot 10^{+96}:\\
\;\;\;\;\mathsf{fma}\left(z, t, \mathsf{fma}\left(a, b, x \cdot y\right)\right)\\
\mathbf{elif}\;t \cdot z \leq 2 \cdot 10^{+75}:\\
\;\;\;\;\mathsf{fma}\left(x, y, \mathsf{fma}\left(c, i, a \cdot b\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(z, t, \mathsf{fma}\left(c, i, x \cdot y\right)\right)\\
\end{array}
\end{array}
if (*.f64 z t) < -5.0000000000000004e96Initial program 88.1%
lift-+.f64N/A
lift-+.f64N/A
associate-+l+N/A
lift-+.f64N/A
+-commutativeN/A
associate-+l+N/A
lift-*.f64N/A
lower-fma.f64N/A
lift-*.f64N/A
*-commutativeN/A
lower-fma.f64N/A
+-commutativeN/A
lift-*.f64N/A
*-commutativeN/A
lower-fma.f6495.2
lift-*.f64N/A
*-commutativeN/A
lower-*.f6495.2
Applied rewrites95.2%
Taylor expanded in c around 0
lower-fma.f64N/A
lower-*.f6497.5
Applied rewrites97.5%
if -5.0000000000000004e96 < (*.f64 z t) < 1.99999999999999985e75Initial program 98.7%
Taylor expanded in z around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6493.2
Applied rewrites93.2%
Applied rewrites94.5%
if 1.99999999999999985e75 < (*.f64 z t) Initial program 95.9%
Taylor expanded in a around 0
*-commutativeN/A
lower-fma.f64N/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6489.0
Applied rewrites89.0%
Applied rewrites91.0%
Final simplification94.3%
(FPCore (x y z t a b c i)
:precision binary64
(if (<= (* t z) -1000000000.0)
(fma i c (fma t z (* x y)))
(if (<= (* t z) 2e+75)
(fma x y (fma c i (* a b)))
(fma z t (fma c i (* x y))))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double tmp;
if ((t * z) <= -1000000000.0) {
tmp = fma(i, c, fma(t, z, (x * y)));
} else if ((t * z) <= 2e+75) {
tmp = fma(x, y, fma(c, i, (a * b)));
} else {
tmp = fma(z, t, fma(c, i, (x * y)));
}
return tmp;
}
function code(x, y, z, t, a, b, c, i) tmp = 0.0 if (Float64(t * z) <= -1000000000.0) tmp = fma(i, c, fma(t, z, Float64(x * y))); elseif (Float64(t * z) <= 2e+75) tmp = fma(x, y, fma(c, i, Float64(a * b))); else tmp = fma(z, t, fma(c, i, Float64(x * y))); end return tmp end
code[x_, y_, z_, t_, a_, b_, c_, i_] := If[LessEqual[N[(t * z), $MachinePrecision], -1000000000.0], N[(i * c + N[(t * z + N[(x * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[(t * z), $MachinePrecision], 2e+75], N[(x * y + N[(c * i + N[(a * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(z * t + N[(c * i + N[(x * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;t \cdot z \leq -1000000000:\\
\;\;\;\;\mathsf{fma}\left(i, c, \mathsf{fma}\left(t, z, x \cdot y\right)\right)\\
\mathbf{elif}\;t \cdot z \leq 2 \cdot 10^{+75}:\\
\;\;\;\;\mathsf{fma}\left(x, y, \mathsf{fma}\left(c, i, a \cdot b\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(z, t, \mathsf{fma}\left(c, i, x \cdot y\right)\right)\\
\end{array}
\end{array}
if (*.f64 z t) < -1e9Initial program 92.0%
Taylor expanded in a around 0
*-commutativeN/A
lower-fma.f64N/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6490.7
Applied rewrites90.7%
if -1e9 < (*.f64 z t) < 1.99999999999999985e75Initial program 98.5%
Taylor expanded in z around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6494.7
Applied rewrites94.7%
Applied rewrites96.1%
if 1.99999999999999985e75 < (*.f64 z t) Initial program 95.9%
Taylor expanded in a around 0
*-commutativeN/A
lower-fma.f64N/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6489.0
Applied rewrites89.0%
Applied rewrites91.0%
Final simplification93.8%
(FPCore (x y z t a b c i)
:precision binary64
(let* ((t_1 (fma i c (fma t z (* x y)))))
(if (<= (* t z) -1000000000.0)
t_1
(if (<= (* t z) 2e+75) (fma x y (fma c i (* a b))) t_1))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double t_1 = fma(i, c, fma(t, z, (x * y)));
double tmp;
if ((t * z) <= -1000000000.0) {
tmp = t_1;
} else if ((t * z) <= 2e+75) {
tmp = fma(x, y, fma(c, i, (a * b)));
} else {
tmp = t_1;
}
return tmp;
}
function code(x, y, z, t, a, b, c, i) t_1 = fma(i, c, fma(t, z, Float64(x * y))) tmp = 0.0 if (Float64(t * z) <= -1000000000.0) tmp = t_1; elseif (Float64(t * z) <= 2e+75) tmp = fma(x, y, fma(c, i, Float64(a * b))); else tmp = t_1; end return tmp end
code[x_, y_, z_, t_, a_, b_, c_, i_] := Block[{t$95$1 = N[(i * c + N[(t * z + N[(x * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[N[(t * z), $MachinePrecision], -1000000000.0], t$95$1, If[LessEqual[N[(t * z), $MachinePrecision], 2e+75], N[(x * y + N[(c * i + N[(a * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \mathsf{fma}\left(i, c, \mathsf{fma}\left(t, z, x \cdot y\right)\right)\\
\mathbf{if}\;t \cdot z \leq -1000000000:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;t \cdot z \leq 2 \cdot 10^{+75}:\\
\;\;\;\;\mathsf{fma}\left(x, y, \mathsf{fma}\left(c, i, a \cdot b\right)\right)\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if (*.f64 z t) < -1e9 or 1.99999999999999985e75 < (*.f64 z t) Initial program 93.7%
Taylor expanded in a around 0
*-commutativeN/A
lower-fma.f64N/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6490.0
Applied rewrites90.0%
if -1e9 < (*.f64 z t) < 1.99999999999999985e75Initial program 98.5%
Taylor expanded in z around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6494.7
Applied rewrites94.7%
Applied rewrites96.1%
Final simplification93.4%
(FPCore (x y z t a b c i)
:precision binary64
(if (<= (* x y) -5e-33)
(fma i c (fma t z (* x y)))
(if (<= (* x y) 1e-67)
(fma b a (fma i c (* t z)))
(fma b a (fma i c (* x y))))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double tmp;
if ((x * y) <= -5e-33) {
tmp = fma(i, c, fma(t, z, (x * y)));
} else if ((x * y) <= 1e-67) {
tmp = fma(b, a, fma(i, c, (t * z)));
} else {
tmp = fma(b, a, fma(i, c, (x * y)));
}
return tmp;
}
function code(x, y, z, t, a, b, c, i) tmp = 0.0 if (Float64(x * y) <= -5e-33) tmp = fma(i, c, fma(t, z, Float64(x * y))); elseif (Float64(x * y) <= 1e-67) tmp = fma(b, a, fma(i, c, Float64(t * z))); else tmp = fma(b, a, fma(i, c, Float64(x * y))); end return tmp end
code[x_, y_, z_, t_, a_, b_, c_, i_] := If[LessEqual[N[(x * y), $MachinePrecision], -5e-33], N[(i * c + N[(t * z + N[(x * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[(x * y), $MachinePrecision], 1e-67], N[(b * a + N[(i * c + N[(t * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(b * a + N[(i * c + N[(x * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \cdot y \leq -5 \cdot 10^{-33}:\\
\;\;\;\;\mathsf{fma}\left(i, c, \mathsf{fma}\left(t, z, x \cdot y\right)\right)\\
\mathbf{elif}\;x \cdot y \leq 10^{-67}:\\
\;\;\;\;\mathsf{fma}\left(b, a, \mathsf{fma}\left(i, c, t \cdot z\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(b, a, \mathsf{fma}\left(i, c, x \cdot y\right)\right)\\
\end{array}
\end{array}
if (*.f64 x y) < -5.00000000000000028e-33Initial program 96.8%
Taylor expanded in a around 0
*-commutativeN/A
lower-fma.f64N/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6485.9
Applied rewrites85.9%
if -5.00000000000000028e-33 < (*.f64 x y) < 9.99999999999999943e-68Initial program 99.1%
Taylor expanded in x around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f6497.5
Applied rewrites97.5%
if 9.99999999999999943e-68 < (*.f64 x y) Initial program 92.2%
Taylor expanded in z around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6491.2
Applied rewrites91.2%
Final simplification92.7%
(FPCore (x y z t a b c i)
:precision binary64
(let* ((t_1 (fma b a (fma i c (* x y)))))
(if (<= (* x y) -5e+65)
t_1
(if (<= (* x y) 1e-67) (fma b a (fma i c (* t z))) t_1))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double t_1 = fma(b, a, fma(i, c, (x * y)));
double tmp;
if ((x * y) <= -5e+65) {
tmp = t_1;
} else if ((x * y) <= 1e-67) {
tmp = fma(b, a, fma(i, c, (t * z)));
} else {
tmp = t_1;
}
return tmp;
}
function code(x, y, z, t, a, b, c, i) t_1 = fma(b, a, fma(i, c, Float64(x * y))) tmp = 0.0 if (Float64(x * y) <= -5e+65) tmp = t_1; elseif (Float64(x * y) <= 1e-67) tmp = fma(b, a, fma(i, c, Float64(t * z))); else tmp = t_1; end return tmp end
code[x_, y_, z_, t_, a_, b_, c_, i_] := Block[{t$95$1 = N[(b * a + N[(i * c + N[(x * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[N[(x * y), $MachinePrecision], -5e+65], t$95$1, If[LessEqual[N[(x * y), $MachinePrecision], 1e-67], N[(b * a + N[(i * c + N[(t * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \mathsf{fma}\left(b, a, \mathsf{fma}\left(i, c, x \cdot y\right)\right)\\
\mathbf{if}\;x \cdot y \leq -5 \cdot 10^{+65}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;x \cdot y \leq 10^{-67}:\\
\;\;\;\;\mathsf{fma}\left(b, a, \mathsf{fma}\left(i, c, t \cdot z\right)\right)\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if (*.f64 x y) < -4.99999999999999973e65 or 9.99999999999999943e-68 < (*.f64 x y) Initial program 94.1%
Taylor expanded in z around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6488.0
Applied rewrites88.0%
if -4.99999999999999973e65 < (*.f64 x y) < 9.99999999999999943e-68Initial program 98.5%
Taylor expanded in x around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f6494.9
Applied rewrites94.9%
Final simplification91.7%
(FPCore (x y z t a b c i)
:precision binary64
(let* ((t_1 (fma i c (* x y))))
(if (<= (* x y) -1e+189)
t_1
(if (<= (* x y) 2e+132) (fma b a (fma i c (* t z))) t_1))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double t_1 = fma(i, c, (x * y));
double tmp;
if ((x * y) <= -1e+189) {
tmp = t_1;
} else if ((x * y) <= 2e+132) {
tmp = fma(b, a, fma(i, c, (t * z)));
} else {
tmp = t_1;
}
return tmp;
}
function code(x, y, z, t, a, b, c, i) t_1 = fma(i, c, Float64(x * y)) tmp = 0.0 if (Float64(x * y) <= -1e+189) tmp = t_1; elseif (Float64(x * y) <= 2e+132) tmp = fma(b, a, fma(i, c, Float64(t * z))); else tmp = t_1; end return tmp end
code[x_, y_, z_, t_, a_, b_, c_, i_] := Block[{t$95$1 = N[(i * c + N[(x * y), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[N[(x * y), $MachinePrecision], -1e+189], t$95$1, If[LessEqual[N[(x * y), $MachinePrecision], 2e+132], N[(b * a + N[(i * c + N[(t * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$1]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \mathsf{fma}\left(i, c, x \cdot y\right)\\
\mathbf{if}\;x \cdot y \leq -1 \cdot 10^{+189}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;x \cdot y \leq 2 \cdot 10^{+132}:\\
\;\;\;\;\mathsf{fma}\left(b, a, \mathsf{fma}\left(i, c, t \cdot z\right)\right)\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if (*.f64 x y) < -1e189 or 1.99999999999999998e132 < (*.f64 x y) Initial program 91.9%
Taylor expanded in z around inf
associate-+r+N/A
distribute-lft-inN/A
*-commutativeN/A
associate-*r/N/A
*-commutativeN/A
associate-/l*N/A
*-inversesN/A
*-rgt-identityN/A
lower-fma.f64N/A
+-commutativeN/A
*-commutativeN/A
associate-/l*N/A
*-commutativeN/A
lower-fma.f64N/A
lower-/.f64N/A
*-commutativeN/A
lower-*.f6490.5
Applied rewrites90.5%
Taylor expanded in x around inf
Applied rewrites86.8%
lift-+.f64N/A
+-commutativeN/A
lift-*.f64N/A
*-commutativeN/A
lower-fma.f6486.8
Applied rewrites86.8%
if -1e189 < (*.f64 x y) < 1.99999999999999998e132Initial program 97.9%
Taylor expanded in x around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f6487.6
Applied rewrites87.6%
Final simplification87.4%
(FPCore (x y z t a b c i) :precision binary64 (if (<= (* t z) -5e+96) (fma z t (* a b)) (if (<= (* t z) 2e+75) (fma i c (* a b)) (fma z t (* c i)))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double tmp;
if ((t * z) <= -5e+96) {
tmp = fma(z, t, (a * b));
} else if ((t * z) <= 2e+75) {
tmp = fma(i, c, (a * b));
} else {
tmp = fma(z, t, (c * i));
}
return tmp;
}
function code(x, y, z, t, a, b, c, i) tmp = 0.0 if (Float64(t * z) <= -5e+96) tmp = fma(z, t, Float64(a * b)); elseif (Float64(t * z) <= 2e+75) tmp = fma(i, c, Float64(a * b)); else tmp = fma(z, t, Float64(c * i)); end return tmp end
code[x_, y_, z_, t_, a_, b_, c_, i_] := If[LessEqual[N[(t * z), $MachinePrecision], -5e+96], N[(z * t + N[(a * b), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[(t * z), $MachinePrecision], 2e+75], N[(i * c + N[(a * b), $MachinePrecision]), $MachinePrecision], N[(z * t + N[(c * i), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;t \cdot z \leq -5 \cdot 10^{+96}:\\
\;\;\;\;\mathsf{fma}\left(z, t, a \cdot b\right)\\
\mathbf{elif}\;t \cdot z \leq 2 \cdot 10^{+75}:\\
\;\;\;\;\mathsf{fma}\left(i, c, a \cdot b\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(z, t, c \cdot i\right)\\
\end{array}
\end{array}
if (*.f64 z t) < -5.0000000000000004e96Initial program 88.1%
Taylor expanded in x around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f6475.7
Applied rewrites75.7%
Taylor expanded in c around 0
Applied rewrites73.2%
Applied rewrites75.6%
if -5.0000000000000004e96 < (*.f64 z t) < 1.99999999999999985e75Initial program 98.7%
Taylor expanded in z around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6493.2
Applied rewrites93.2%
Taylor expanded in x around 0
Applied rewrites61.7%
Taylor expanded in x around 0
Applied rewrites62.3%
if 1.99999999999999985e75 < (*.f64 z t) Initial program 95.9%
Taylor expanded in a around 0
*-commutativeN/A
lower-fma.f64N/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6489.0
Applied rewrites89.0%
Applied rewrites91.0%
Taylor expanded in x around 0
Applied rewrites81.3%
Final simplification68.1%
(FPCore (x y z t a b c i) :precision binary64 (if (<= (* t z) -5e+96) (fma z t (* a b)) (if (<= (* t z) 2e+75) (fma i c (* a b)) (fma i c (* t z)))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double tmp;
if ((t * z) <= -5e+96) {
tmp = fma(z, t, (a * b));
} else if ((t * z) <= 2e+75) {
tmp = fma(i, c, (a * b));
} else {
tmp = fma(i, c, (t * z));
}
return tmp;
}
function code(x, y, z, t, a, b, c, i) tmp = 0.0 if (Float64(t * z) <= -5e+96) tmp = fma(z, t, Float64(a * b)); elseif (Float64(t * z) <= 2e+75) tmp = fma(i, c, Float64(a * b)); else tmp = fma(i, c, Float64(t * z)); end return tmp end
code[x_, y_, z_, t_, a_, b_, c_, i_] := If[LessEqual[N[(t * z), $MachinePrecision], -5e+96], N[(z * t + N[(a * b), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[(t * z), $MachinePrecision], 2e+75], N[(i * c + N[(a * b), $MachinePrecision]), $MachinePrecision], N[(i * c + N[(t * z), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;t \cdot z \leq -5 \cdot 10^{+96}:\\
\;\;\;\;\mathsf{fma}\left(z, t, a \cdot b\right)\\
\mathbf{elif}\;t \cdot z \leq 2 \cdot 10^{+75}:\\
\;\;\;\;\mathsf{fma}\left(i, c, a \cdot b\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(i, c, t \cdot z\right)\\
\end{array}
\end{array}
if (*.f64 z t) < -5.0000000000000004e96Initial program 88.1%
Taylor expanded in x around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f6475.7
Applied rewrites75.7%
Taylor expanded in c around 0
Applied rewrites73.2%
Applied rewrites75.6%
if -5.0000000000000004e96 < (*.f64 z t) < 1.99999999999999985e75Initial program 98.7%
Taylor expanded in z around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6493.2
Applied rewrites93.2%
Taylor expanded in x around 0
Applied rewrites61.7%
Taylor expanded in x around 0
Applied rewrites62.3%
if 1.99999999999999985e75 < (*.f64 z t) Initial program 95.9%
Taylor expanded in a around 0
*-commutativeN/A
lower-fma.f64N/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6489.0
Applied rewrites89.0%
Taylor expanded in x around 0
Applied rewrites79.3%
Final simplification67.7%
(FPCore (x y z t a b c i) :precision binary64 (let* ((t_1 (fma z t (* a b)))) (if (<= (* t z) -5e+96) t_1 (if (<= (* t z) 5e-7) (fma i c (* a b)) t_1))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double t_1 = fma(z, t, (a * b));
double tmp;
if ((t * z) <= -5e+96) {
tmp = t_1;
} else if ((t * z) <= 5e-7) {
tmp = fma(i, c, (a * b));
} else {
tmp = t_1;
}
return tmp;
}
function code(x, y, z, t, a, b, c, i) t_1 = fma(z, t, Float64(a * b)) tmp = 0.0 if (Float64(t * z) <= -5e+96) tmp = t_1; elseif (Float64(t * z) <= 5e-7) tmp = fma(i, c, Float64(a * b)); else tmp = t_1; end return tmp end
code[x_, y_, z_, t_, a_, b_, c_, i_] := Block[{t$95$1 = N[(z * t + N[(a * b), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[N[(t * z), $MachinePrecision], -5e+96], t$95$1, If[LessEqual[N[(t * z), $MachinePrecision], 5e-7], N[(i * c + N[(a * b), $MachinePrecision]), $MachinePrecision], t$95$1]]]
\begin{array}{l}
\\
\begin{array}{l}
t_1 := \mathsf{fma}\left(z, t, a \cdot b\right)\\
\mathbf{if}\;t \cdot z \leq -5 \cdot 10^{+96}:\\
\;\;\;\;t\_1\\
\mathbf{elif}\;t \cdot z \leq 5 \cdot 10^{-7}:\\
\;\;\;\;\mathsf{fma}\left(i, c, a \cdot b\right)\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}
\end{array}
if (*.f64 z t) < -5.0000000000000004e96 or 4.99999999999999977e-7 < (*.f64 z t) Initial program 93.0%
Taylor expanded in x around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f6479.1
Applied rewrites79.1%
Taylor expanded in c around 0
Applied rewrites71.2%
Applied rewrites73.2%
if -5.0000000000000004e96 < (*.f64 z t) < 4.99999999999999977e-7Initial program 98.6%
Taylor expanded in z around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6494.1
Applied rewrites94.1%
Taylor expanded in x around 0
Applied rewrites63.2%
Taylor expanded in x around 0
Applied rewrites63.8%
Final simplification67.5%
(FPCore (x y z t a b c i) :precision binary64 (if (<= (* c i) -5e+101) (* c i) (if (<= (* c i) 4e+117) (fma z t (* a b)) (* c i))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double tmp;
if ((c * i) <= -5e+101) {
tmp = c * i;
} else if ((c * i) <= 4e+117) {
tmp = fma(z, t, (a * b));
} else {
tmp = c * i;
}
return tmp;
}
function code(x, y, z, t, a, b, c, i) tmp = 0.0 if (Float64(c * i) <= -5e+101) tmp = Float64(c * i); elseif (Float64(c * i) <= 4e+117) tmp = fma(z, t, Float64(a * b)); else tmp = Float64(c * i); end return tmp end
code[x_, y_, z_, t_, a_, b_, c_, i_] := If[LessEqual[N[(c * i), $MachinePrecision], -5e+101], N[(c * i), $MachinePrecision], If[LessEqual[N[(c * i), $MachinePrecision], 4e+117], N[(z * t + N[(a * b), $MachinePrecision]), $MachinePrecision], N[(c * i), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;c \cdot i \leq -5 \cdot 10^{+101}:\\
\;\;\;\;c \cdot i\\
\mathbf{elif}\;c \cdot i \leq 4 \cdot 10^{+117}:\\
\;\;\;\;\mathsf{fma}\left(z, t, a \cdot b\right)\\
\mathbf{else}:\\
\;\;\;\;c \cdot i\\
\end{array}
\end{array}
if (*.f64 c i) < -4.99999999999999989e101 or 4.0000000000000002e117 < (*.f64 c i) Initial program 93.6%
Taylor expanded in c around inf
*-commutativeN/A
lower-*.f6468.6
Applied rewrites68.6%
if -4.99999999999999989e101 < (*.f64 c i) < 4.0000000000000002e117Initial program 97.7%
Taylor expanded in x around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f6466.0
Applied rewrites66.0%
Taylor expanded in c around 0
Applied rewrites58.3%
Applied rewrites59.5%
Final simplification62.3%
(FPCore (x y z t a b c i) :precision binary64 (if (<= (* c i) -5e+101) (* c i) (if (<= (* c i) 4e+117) (fma a b (* t z)) (* c i))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double tmp;
if ((c * i) <= -5e+101) {
tmp = c * i;
} else if ((c * i) <= 4e+117) {
tmp = fma(a, b, (t * z));
} else {
tmp = c * i;
}
return tmp;
}
function code(x, y, z, t, a, b, c, i) tmp = 0.0 if (Float64(c * i) <= -5e+101) tmp = Float64(c * i); elseif (Float64(c * i) <= 4e+117) tmp = fma(a, b, Float64(t * z)); else tmp = Float64(c * i); end return tmp end
code[x_, y_, z_, t_, a_, b_, c_, i_] := If[LessEqual[N[(c * i), $MachinePrecision], -5e+101], N[(c * i), $MachinePrecision], If[LessEqual[N[(c * i), $MachinePrecision], 4e+117], N[(a * b + N[(t * z), $MachinePrecision]), $MachinePrecision], N[(c * i), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;c \cdot i \leq -5 \cdot 10^{+101}:\\
\;\;\;\;c \cdot i\\
\mathbf{elif}\;c \cdot i \leq 4 \cdot 10^{+117}:\\
\;\;\;\;\mathsf{fma}\left(a, b, t \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;c \cdot i\\
\end{array}
\end{array}
if (*.f64 c i) < -4.99999999999999989e101 or 4.0000000000000002e117 < (*.f64 c i) Initial program 93.6%
Taylor expanded in c around inf
*-commutativeN/A
lower-*.f6468.6
Applied rewrites68.6%
if -4.99999999999999989e101 < (*.f64 c i) < 4.0000000000000002e117Initial program 97.7%
Taylor expanded in x around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f6466.0
Applied rewrites66.0%
Taylor expanded in c around 0
Applied rewrites58.3%
Final simplification61.5%
(FPCore (x y z t a b c i) :precision binary64 (if (<= (* t z) -5e+96) (* t z) (if (<= (* t z) 5e-7) (* c i) (* t z))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double tmp;
if ((t * z) <= -5e+96) {
tmp = t * z;
} else if ((t * z) <= 5e-7) {
tmp = c * i;
} else {
tmp = t * z;
}
return tmp;
}
real(8) function code(x, y, z, t, a, b, c, i)
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), intent (in) :: b
real(8), intent (in) :: c
real(8), intent (in) :: i
real(8) :: tmp
if ((t * z) <= (-5d+96)) then
tmp = t * z
else if ((t * z) <= 5d-7) then
tmp = c * i
else
tmp = t * z
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double tmp;
if ((t * z) <= -5e+96) {
tmp = t * z;
} else if ((t * z) <= 5e-7) {
tmp = c * i;
} else {
tmp = t * z;
}
return tmp;
}
def code(x, y, z, t, a, b, c, i): tmp = 0 if (t * z) <= -5e+96: tmp = t * z elif (t * z) <= 5e-7: tmp = c * i else: tmp = t * z return tmp
function code(x, y, z, t, a, b, c, i) tmp = 0.0 if (Float64(t * z) <= -5e+96) tmp = Float64(t * z); elseif (Float64(t * z) <= 5e-7) tmp = Float64(c * i); else tmp = Float64(t * z); end return tmp end
function tmp_2 = code(x, y, z, t, a, b, c, i) tmp = 0.0; if ((t * z) <= -5e+96) tmp = t * z; elseif ((t * z) <= 5e-7) tmp = c * i; else tmp = t * z; end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_, b_, c_, i_] := If[LessEqual[N[(t * z), $MachinePrecision], -5e+96], N[(t * z), $MachinePrecision], If[LessEqual[N[(t * z), $MachinePrecision], 5e-7], N[(c * i), $MachinePrecision], N[(t * z), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;t \cdot z \leq -5 \cdot 10^{+96}:\\
\;\;\;\;t \cdot z\\
\mathbf{elif}\;t \cdot z \leq 5 \cdot 10^{-7}:\\
\;\;\;\;c \cdot i\\
\mathbf{else}:\\
\;\;\;\;t \cdot z\\
\end{array}
\end{array}
if (*.f64 z t) < -5.0000000000000004e96 or 4.99999999999999977e-7 < (*.f64 z t) Initial program 93.0%
Taylor expanded in a around 0
*-commutativeN/A
lower-fma.f64N/A
lower-fma.f64N/A
*-commutativeN/A
lower-*.f6487.7
Applied rewrites87.7%
Applied rewrites87.7%
Taylor expanded in z around inf
lower-*.f6460.9
Applied rewrites60.9%
if -5.0000000000000004e96 < (*.f64 z t) < 4.99999999999999977e-7Initial program 98.6%
Taylor expanded in c around inf
*-commutativeN/A
lower-*.f6438.3
Applied rewrites38.3%
Final simplification47.1%
(FPCore (x y z t a b c i) :precision binary64 (if (<= (* c i) -5e+88) (* c i) (if (<= (* c i) 4e+37) (* a b) (* c i))))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double tmp;
if ((c * i) <= -5e+88) {
tmp = c * i;
} else if ((c * i) <= 4e+37) {
tmp = a * b;
} else {
tmp = c * i;
}
return tmp;
}
real(8) function code(x, y, z, t, a, b, c, i)
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), intent (in) :: b
real(8), intent (in) :: c
real(8), intent (in) :: i
real(8) :: tmp
if ((c * i) <= (-5d+88)) then
tmp = c * i
else if ((c * i) <= 4d+37) then
tmp = a * b
else
tmp = c * i
end if
code = tmp
end function
public static double code(double x, double y, double z, double t, double a, double b, double c, double i) {
double tmp;
if ((c * i) <= -5e+88) {
tmp = c * i;
} else if ((c * i) <= 4e+37) {
tmp = a * b;
} else {
tmp = c * i;
}
return tmp;
}
def code(x, y, z, t, a, b, c, i): tmp = 0 if (c * i) <= -5e+88: tmp = c * i elif (c * i) <= 4e+37: tmp = a * b else: tmp = c * i return tmp
function code(x, y, z, t, a, b, c, i) tmp = 0.0 if (Float64(c * i) <= -5e+88) tmp = Float64(c * i); elseif (Float64(c * i) <= 4e+37) tmp = Float64(a * b); else tmp = Float64(c * i); end return tmp end
function tmp_2 = code(x, y, z, t, a, b, c, i) tmp = 0.0; if ((c * i) <= -5e+88) tmp = c * i; elseif ((c * i) <= 4e+37) tmp = a * b; else tmp = c * i; end tmp_2 = tmp; end
code[x_, y_, z_, t_, a_, b_, c_, i_] := If[LessEqual[N[(c * i), $MachinePrecision], -5e+88], N[(c * i), $MachinePrecision], If[LessEqual[N[(c * i), $MachinePrecision], 4e+37], N[(a * b), $MachinePrecision], N[(c * i), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;c \cdot i \leq -5 \cdot 10^{+88}:\\
\;\;\;\;c \cdot i\\
\mathbf{elif}\;c \cdot i \leq 4 \cdot 10^{+37}:\\
\;\;\;\;a \cdot b\\
\mathbf{else}:\\
\;\;\;\;c \cdot i\\
\end{array}
\end{array}
if (*.f64 c i) < -4.99999999999999997e88 or 3.99999999999999982e37 < (*.f64 c i) Initial program 94.2%
Taylor expanded in c around inf
*-commutativeN/A
lower-*.f6461.1
Applied rewrites61.1%
if -4.99999999999999997e88 < (*.f64 c i) < 3.99999999999999982e37Initial program 98.0%
Taylor expanded in x around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f6463.6
Applied rewrites63.6%
Taylor expanded in c around 0
Applied rewrites60.5%
Taylor expanded in z around 0
Applied rewrites31.3%
Final simplification43.3%
(FPCore (x y z t a b c i) :precision binary64 (* a b))
double code(double x, double y, double z, double t, double a, double b, double c, double i) {
return a * b;
}
real(8) function code(x, y, z, t, a, b, c, i)
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), intent (in) :: b
real(8), intent (in) :: c
real(8), intent (in) :: i
code = a * b
end function
public static double code(double x, double y, double z, double t, double a, double b, double c, double i) {
return a * b;
}
def code(x, y, z, t, a, b, c, i): return a * b
function code(x, y, z, t, a, b, c, i) return Float64(a * b) end
function tmp = code(x, y, z, t, a, b, c, i) tmp = a * b; end
code[x_, y_, z_, t_, a_, b_, c_, i_] := N[(a * b), $MachinePrecision]
\begin{array}{l}
\\
a \cdot b
\end{array}
Initial program 96.4%
Taylor expanded in x around 0
*-commutativeN/A
lower-fma.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f6471.8
Applied rewrites71.8%
Taylor expanded in c around 0
Applied rewrites47.3%
Taylor expanded in z around 0
Applied rewrites23.8%
Final simplification23.8%
herbie shell --seed 2024284
(FPCore (x y z t a b c i)
:name "Linear.V4:$cdot from linear-1.19.1.3, C"
:precision binary64
(+ (+ (+ (* x y) (* z t)) (* a b)) (* c i)))