
(FPCore (x eps) :precision binary64 (- x (sqrt (- (* x x) eps))))
double code(double x, double eps) {
return x - sqrt(((x * x) - eps));
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = x - sqrt(((x * x) - eps))
end function
public static double code(double x, double eps) {
return x - Math.sqrt(((x * x) - eps));
}
def code(x, eps): return x - math.sqrt(((x * x) - eps))
function code(x, eps) return Float64(x - sqrt(Float64(Float64(x * x) - eps))) end
function tmp = code(x, eps) tmp = x - sqrt(((x * x) - eps)); end
code[x_, eps_] := N[(x - N[Sqrt[N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x - \sqrt{x \cdot x - \varepsilon}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 8 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x eps) :precision binary64 (- x (sqrt (- (* x x) eps))))
double code(double x, double eps) {
return x - sqrt(((x * x) - eps));
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = x - sqrt(((x * x) - eps))
end function
public static double code(double x, double eps) {
return x - Math.sqrt(((x * x) - eps));
}
def code(x, eps): return x - math.sqrt(((x * x) - eps))
function code(x, eps) return Float64(x - sqrt(Float64(Float64(x * x) - eps))) end
function tmp = code(x, eps) tmp = x - sqrt(((x * x) - eps)); end
code[x_, eps_] := N[(x - N[Sqrt[N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x - \sqrt{x \cdot x - \varepsilon}
\end{array}
(FPCore (x eps)
:precision binary64
(if (<= (- x (sqrt (- (* x x) eps))) -2e-153)
(/ eps (+ x (hypot x (sqrt (- eps)))))
(/
eps
(fma
x
2.0
(fma (/ eps x) -0.5 (* -0.125 (pow (/ (pow (cbrt eps) 2.0) x) 3.0)))))))
double code(double x, double eps) {
double tmp;
if ((x - sqrt(((x * x) - eps))) <= -2e-153) {
tmp = eps / (x + hypot(x, sqrt(-eps)));
} else {
tmp = eps / fma(x, 2.0, fma((eps / x), -0.5, (-0.125 * pow((pow(cbrt(eps), 2.0) / x), 3.0))));
}
return tmp;
}
function code(x, eps) tmp = 0.0 if (Float64(x - sqrt(Float64(Float64(x * x) - eps))) <= -2e-153) tmp = Float64(eps / Float64(x + hypot(x, sqrt(Float64(-eps))))); else tmp = Float64(eps / fma(x, 2.0, fma(Float64(eps / x), -0.5, Float64(-0.125 * (Float64((cbrt(eps) ^ 2.0) / x) ^ 3.0))))); end return tmp end
code[x_, eps_] := If[LessEqual[N[(x - N[Sqrt[N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], -2e-153], N[(eps / N[(x + N[Sqrt[x ^ 2 + N[Sqrt[(-eps)], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(eps / N[(x * 2.0 + N[(N[(eps / x), $MachinePrecision] * -0.5 + N[(-0.125 * N[Power[N[(N[Power[N[Power[eps, 1/3], $MachinePrecision], 2.0], $MachinePrecision] / x), $MachinePrecision], 3.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x - \sqrt{x \cdot x - \varepsilon} \leq -2 \cdot 10^{-153}:\\
\;\;\;\;\frac{\varepsilon}{x + \mathsf{hypot}\left(x, \sqrt{-\varepsilon}\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{\varepsilon}{\mathsf{fma}\left(x, 2, \mathsf{fma}\left(\frac{\varepsilon}{x}, -0.5, -0.125 \cdot {\left(\frac{{\left(\sqrt[3]{\varepsilon}\right)}^{2}}{x}\right)}^{3}\right)\right)}\\
\end{array}
\end{array}
if (-.f64 x (sqrt.f64 (-.f64 (*.f64 x x) eps))) < -2.00000000000000008e-153Initial program 97.9%
flip--97.8%
div-inv97.6%
add-sqr-sqrt97.2%
sub-neg97.2%
add-sqr-sqrt97.2%
hypot-def97.2%
Applied egg-rr97.2%
associate-*r/97.3%
*-rgt-identity97.3%
associate--r-99.2%
+-inverses99.2%
+-lft-identity99.2%
Simplified99.2%
if -2.00000000000000008e-153 < (-.f64 x (sqrt.f64 (-.f64 (*.f64 x x) eps))) Initial program 8.8%
flip--8.7%
div-inv8.7%
add-sqr-sqrt8.9%
sub-neg8.9%
add-sqr-sqrt2.5%
hypot-def2.5%
Applied egg-rr2.5%
associate-*r/2.5%
*-rgt-identity2.5%
associate--r-51.0%
+-inverses51.0%
+-lft-identity51.0%
Simplified51.0%
Taylor expanded in x around inf 0.0%
*-commutative0.0%
fma-def0.0%
associate-*r/0.0%
unpow20.0%
rem-square-sqrt0.0%
*-commutative0.0%
associate-*r*0.0%
metadata-eval0.0%
associate-*r/0.0%
Simplified93.1%
add-cube-cbrt93.1%
pow293.1%
cbrt-div93.1%
cbrt-prod93.1%
pow293.1%
rem-cbrt-cube93.1%
cbrt-div93.1%
cbrt-prod93.4%
pow293.4%
rem-cbrt-cube100.0%
Applied egg-rr100.0%
pow-plus100.0%
metadata-eval100.0%
Simplified100.0%
Final simplification99.5%
(FPCore (x eps) :precision binary64 (if (<= (- x (sqrt (- (* x x) eps))) -2e-153) (/ eps (+ x (hypot x (sqrt (- eps))))) (/ eps (+ (* x 2.0) (* (/ eps x) -0.5)))))
double code(double x, double eps) {
double tmp;
if ((x - sqrt(((x * x) - eps))) <= -2e-153) {
tmp = eps / (x + hypot(x, sqrt(-eps)));
} else {
tmp = eps / ((x * 2.0) + ((eps / x) * -0.5));
}
return tmp;
}
public static double code(double x, double eps) {
double tmp;
if ((x - Math.sqrt(((x * x) - eps))) <= -2e-153) {
tmp = eps / (x + Math.hypot(x, Math.sqrt(-eps)));
} else {
tmp = eps / ((x * 2.0) + ((eps / x) * -0.5));
}
return tmp;
}
def code(x, eps): tmp = 0 if (x - math.sqrt(((x * x) - eps))) <= -2e-153: tmp = eps / (x + math.hypot(x, math.sqrt(-eps))) else: tmp = eps / ((x * 2.0) + ((eps / x) * -0.5)) return tmp
function code(x, eps) tmp = 0.0 if (Float64(x - sqrt(Float64(Float64(x * x) - eps))) <= -2e-153) tmp = Float64(eps / Float64(x + hypot(x, sqrt(Float64(-eps))))); else tmp = Float64(eps / Float64(Float64(x * 2.0) + Float64(Float64(eps / x) * -0.5))); end return tmp end
function tmp_2 = code(x, eps) tmp = 0.0; if ((x - sqrt(((x * x) - eps))) <= -2e-153) tmp = eps / (x + hypot(x, sqrt(-eps))); else tmp = eps / ((x * 2.0) + ((eps / x) * -0.5)); end tmp_2 = tmp; end
code[x_, eps_] := If[LessEqual[N[(x - N[Sqrt[N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], -2e-153], N[(eps / N[(x + N[Sqrt[x ^ 2 + N[Sqrt[(-eps)], $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(eps / N[(N[(x * 2.0), $MachinePrecision] + N[(N[(eps / x), $MachinePrecision] * -0.5), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x - \sqrt{x \cdot x - \varepsilon} \leq -2 \cdot 10^{-153}:\\
\;\;\;\;\frac{\varepsilon}{x + \mathsf{hypot}\left(x, \sqrt{-\varepsilon}\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{\varepsilon}{x \cdot 2 + \frac{\varepsilon}{x} \cdot -0.5}\\
\end{array}
\end{array}
if (-.f64 x (sqrt.f64 (-.f64 (*.f64 x x) eps))) < -2.00000000000000008e-153Initial program 97.9%
flip--97.8%
div-inv97.6%
add-sqr-sqrt97.2%
sub-neg97.2%
add-sqr-sqrt97.2%
hypot-def97.2%
Applied egg-rr97.2%
associate-*r/97.3%
*-rgt-identity97.3%
associate--r-99.2%
+-inverses99.2%
+-lft-identity99.2%
Simplified99.2%
if -2.00000000000000008e-153 < (-.f64 x (sqrt.f64 (-.f64 (*.f64 x x) eps))) Initial program 8.8%
flip--8.7%
div-inv8.7%
add-sqr-sqrt8.9%
sub-neg8.9%
add-sqr-sqrt2.5%
hypot-def2.5%
Applied egg-rr2.5%
associate-*r/2.5%
*-rgt-identity2.5%
associate--r-51.0%
+-inverses51.0%
+-lft-identity51.0%
Simplified51.0%
Taylor expanded in x around inf 0.0%
*-commutative0.0%
fma-def0.0%
associate-*r/0.0%
unpow20.0%
rem-square-sqrt99.3%
*-commutative99.3%
associate-*r*99.3%
metadata-eval99.3%
associate-*r/99.3%
*-commutative99.3%
Simplified99.3%
fma-udef99.3%
*-commutative99.3%
Applied egg-rr99.3%
Final simplification99.3%
(FPCore (x eps) :precision binary64 (let* ((t_0 (- x (sqrt (- (* x x) eps))))) (if (<= t_0 -2e-153) t_0 (/ eps (+ (* x 2.0) (* (/ eps x) -0.5))))))
double code(double x, double eps) {
double t_0 = x - sqrt(((x * x) - eps));
double tmp;
if (t_0 <= -2e-153) {
tmp = t_0;
} else {
tmp = eps / ((x * 2.0) + ((eps / x) * -0.5));
}
return tmp;
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
real(8) :: t_0
real(8) :: tmp
t_0 = x - sqrt(((x * x) - eps))
if (t_0 <= (-2d-153)) then
tmp = t_0
else
tmp = eps / ((x * 2.0d0) + ((eps / x) * (-0.5d0)))
end if
code = tmp
end function
public static double code(double x, double eps) {
double t_0 = x - Math.sqrt(((x * x) - eps));
double tmp;
if (t_0 <= -2e-153) {
tmp = t_0;
} else {
tmp = eps / ((x * 2.0) + ((eps / x) * -0.5));
}
return tmp;
}
def code(x, eps): t_0 = x - math.sqrt(((x * x) - eps)) tmp = 0 if t_0 <= -2e-153: tmp = t_0 else: tmp = eps / ((x * 2.0) + ((eps / x) * -0.5)) return tmp
function code(x, eps) t_0 = Float64(x - sqrt(Float64(Float64(x * x) - eps))) tmp = 0.0 if (t_0 <= -2e-153) tmp = t_0; else tmp = Float64(eps / Float64(Float64(x * 2.0) + Float64(Float64(eps / x) * -0.5))); end return tmp end
function tmp_2 = code(x, eps) t_0 = x - sqrt(((x * x) - eps)); tmp = 0.0; if (t_0 <= -2e-153) tmp = t_0; else tmp = eps / ((x * 2.0) + ((eps / x) * -0.5)); end tmp_2 = tmp; end
code[x_, eps_] := Block[{t$95$0 = N[(x - N[Sqrt[N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$0, -2e-153], t$95$0, N[(eps / N[(N[(x * 2.0), $MachinePrecision] + N[(N[(eps / x), $MachinePrecision] * -0.5), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := x - \sqrt{x \cdot x - \varepsilon}\\
\mathbf{if}\;t_0 \leq -2 \cdot 10^{-153}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\frac{\varepsilon}{x \cdot 2 + \frac{\varepsilon}{x} \cdot -0.5}\\
\end{array}
\end{array}
if (-.f64 x (sqrt.f64 (-.f64 (*.f64 x x) eps))) < -2.00000000000000008e-153Initial program 97.9%
if -2.00000000000000008e-153 < (-.f64 x (sqrt.f64 (-.f64 (*.f64 x x) eps))) Initial program 8.8%
flip--8.7%
div-inv8.7%
add-sqr-sqrt8.9%
sub-neg8.9%
add-sqr-sqrt2.5%
hypot-def2.5%
Applied egg-rr2.5%
associate-*r/2.5%
*-rgt-identity2.5%
associate--r-51.0%
+-inverses51.0%
+-lft-identity51.0%
Simplified51.0%
Taylor expanded in x around inf 0.0%
*-commutative0.0%
fma-def0.0%
associate-*r/0.0%
unpow20.0%
rem-square-sqrt99.3%
*-commutative99.3%
associate-*r*99.3%
metadata-eval99.3%
associate-*r/99.3%
*-commutative99.3%
Simplified99.3%
fma-udef99.3%
*-commutative99.3%
Applied egg-rr99.3%
Final simplification98.5%
(FPCore (x eps) :precision binary64 (if (<= x 1.3e-92) (- x (sqrt (- eps))) (/ eps (+ (* x 2.0) (* (/ eps x) -0.5)))))
double code(double x, double eps) {
double tmp;
if (x <= 1.3e-92) {
tmp = x - sqrt(-eps);
} else {
tmp = eps / ((x * 2.0) + ((eps / x) * -0.5));
}
return tmp;
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
real(8) :: tmp
if (x <= 1.3d-92) then
tmp = x - sqrt(-eps)
else
tmp = eps / ((x * 2.0d0) + ((eps / x) * (-0.5d0)))
end if
code = tmp
end function
public static double code(double x, double eps) {
double tmp;
if (x <= 1.3e-92) {
tmp = x - Math.sqrt(-eps);
} else {
tmp = eps / ((x * 2.0) + ((eps / x) * -0.5));
}
return tmp;
}
def code(x, eps): tmp = 0 if x <= 1.3e-92: tmp = x - math.sqrt(-eps) else: tmp = eps / ((x * 2.0) + ((eps / x) * -0.5)) return tmp
function code(x, eps) tmp = 0.0 if (x <= 1.3e-92) tmp = Float64(x - sqrt(Float64(-eps))); else tmp = Float64(eps / Float64(Float64(x * 2.0) + Float64(Float64(eps / x) * -0.5))); end return tmp end
function tmp_2 = code(x, eps) tmp = 0.0; if (x <= 1.3e-92) tmp = x - sqrt(-eps); else tmp = eps / ((x * 2.0) + ((eps / x) * -0.5)); end tmp_2 = tmp; end
code[x_, eps_] := If[LessEqual[x, 1.3e-92], N[(x - N[Sqrt[(-eps)], $MachinePrecision]), $MachinePrecision], N[(eps / N[(N[(x * 2.0), $MachinePrecision] + N[(N[(eps / x), $MachinePrecision] * -0.5), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq 1.3 \cdot 10^{-92}:\\
\;\;\;\;x - \sqrt{-\varepsilon}\\
\mathbf{else}:\\
\;\;\;\;\frac{\varepsilon}{x \cdot 2 + \frac{\varepsilon}{x} \cdot -0.5}\\
\end{array}
\end{array}
if x < 1.3e-92Initial program 94.8%
Taylor expanded in x around 0 93.8%
neg-mul-193.8%
Simplified93.8%
if 1.3e-92 < x Initial program 20.0%
flip--20.0%
div-inv20.0%
add-sqr-sqrt20.1%
sub-neg20.1%
add-sqr-sqrt15.5%
hypot-def15.5%
Applied egg-rr15.5%
associate-*r/15.5%
*-rgt-identity15.5%
associate--r-58.4%
+-inverses58.4%
+-lft-identity58.4%
Simplified58.4%
Taylor expanded in x around inf 0.0%
*-commutative0.0%
fma-def0.0%
associate-*r/0.0%
unpow20.0%
rem-square-sqrt89.7%
*-commutative89.7%
associate-*r*89.7%
metadata-eval89.7%
associate-*r/89.7%
*-commutative89.7%
Simplified89.7%
fma-udef89.7%
*-commutative89.7%
Applied egg-rr89.7%
Final simplification92.0%
(FPCore (x eps) :precision binary64 (/ eps (+ (* x 2.0) (* (/ eps x) -0.5))))
double code(double x, double eps) {
return eps / ((x * 2.0) + ((eps / x) * -0.5));
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = eps / ((x * 2.0d0) + ((eps / x) * (-0.5d0)))
end function
public static double code(double x, double eps) {
return eps / ((x * 2.0) + ((eps / x) * -0.5));
}
def code(x, eps): return eps / ((x * 2.0) + ((eps / x) * -0.5))
function code(x, eps) return Float64(eps / Float64(Float64(x * 2.0) + Float64(Float64(eps / x) * -0.5))) end
function tmp = code(x, eps) tmp = eps / ((x * 2.0) + ((eps / x) * -0.5)); end
code[x_, eps_] := N[(eps / N[(N[(x * 2.0), $MachinePrecision] + N[(N[(eps / x), $MachinePrecision] * -0.5), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{\varepsilon}{x \cdot 2 + \frac{\varepsilon}{x} \cdot -0.5}
\end{array}
Initial program 62.4%
flip--62.3%
div-inv62.2%
add-sqr-sqrt62.0%
sub-neg62.0%
add-sqr-sqrt59.5%
hypot-def59.5%
Applied egg-rr59.5%
associate-*r/59.5%
*-rgt-identity59.5%
associate--r-80.0%
+-inverses80.0%
+-lft-identity80.0%
Simplified80.0%
Taylor expanded in x around inf 0.0%
*-commutative0.0%
fma-def0.0%
associate-*r/0.0%
unpow20.0%
rem-square-sqrt45.3%
*-commutative45.3%
associate-*r*45.3%
metadata-eval45.3%
associate-*r/45.3%
*-commutative45.3%
Simplified45.3%
fma-udef45.3%
*-commutative45.3%
Applied egg-rr45.3%
Final simplification45.3%
(FPCore (x eps) :precision binary64 (* (/ eps x) 0.5))
double code(double x, double eps) {
return (eps / x) * 0.5;
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = (eps / x) * 0.5d0
end function
public static double code(double x, double eps) {
return (eps / x) * 0.5;
}
def code(x, eps): return (eps / x) * 0.5
function code(x, eps) return Float64(Float64(eps / x) * 0.5) end
function tmp = code(x, eps) tmp = (eps / x) * 0.5; end
code[x_, eps_] := N[(N[(eps / x), $MachinePrecision] * 0.5), $MachinePrecision]
\begin{array}{l}
\\
\frac{\varepsilon}{x} \cdot 0.5
\end{array}
Initial program 62.4%
Taylor expanded in x around inf 44.3%
Final simplification44.3%
(FPCore (x eps) :precision binary64 (* x -2.0))
double code(double x, double eps) {
return x * -2.0;
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = x * (-2.0d0)
end function
public static double code(double x, double eps) {
return x * -2.0;
}
def code(x, eps): return x * -2.0
function code(x, eps) return Float64(x * -2.0) end
function tmp = code(x, eps) tmp = x * -2.0; end
code[x_, eps_] := N[(x * -2.0), $MachinePrecision]
\begin{array}{l}
\\
x \cdot -2
\end{array}
Initial program 62.4%
flip--62.3%
div-inv62.2%
add-sqr-sqrt62.0%
sub-neg62.0%
add-sqr-sqrt59.5%
hypot-def59.5%
Applied egg-rr59.5%
associate-*r/59.5%
*-rgt-identity59.5%
associate--r-80.0%
+-inverses80.0%
+-lft-identity80.0%
Simplified80.0%
Taylor expanded in x around inf 0.0%
*-commutative0.0%
fma-def0.0%
associate-*r/0.0%
unpow20.0%
rem-square-sqrt45.3%
*-commutative45.3%
associate-*r*45.3%
metadata-eval45.3%
associate-*r/45.3%
*-commutative45.3%
Simplified45.3%
Taylor expanded in eps around inf 5.4%
*-commutative5.4%
Simplified5.4%
Final simplification5.4%
(FPCore (x eps) :precision binary64 0.0)
double code(double x, double eps) {
return 0.0;
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = 0.0d0
end function
public static double code(double x, double eps) {
return 0.0;
}
def code(x, eps): return 0.0
function code(x, eps) return 0.0 end
function tmp = code(x, eps) tmp = 0.0; end
code[x_, eps_] := 0.0
\begin{array}{l}
\\
0
\end{array}
Initial program 62.4%
add-sqr-sqrt61.7%
pow261.7%
pow1/261.7%
sqrt-pow161.7%
metadata-eval61.7%
Applied egg-rr61.7%
Taylor expanded in x around inf 4.2%
distribute-lft1-in4.2%
metadata-eval4.2%
mul0-lft4.2%
Simplified4.2%
Final simplification4.2%
(FPCore (x eps) :precision binary64 (/ eps (+ x (sqrt (- (* x x) eps)))))
double code(double x, double eps) {
return eps / (x + sqrt(((x * x) - eps)));
}
real(8) function code(x, eps)
real(8), intent (in) :: x
real(8), intent (in) :: eps
code = eps / (x + sqrt(((x * x) - eps)))
end function
public static double code(double x, double eps) {
return eps / (x + Math.sqrt(((x * x) - eps)));
}
def code(x, eps): return eps / (x + math.sqrt(((x * x) - eps)))
function code(x, eps) return Float64(eps / Float64(x + sqrt(Float64(Float64(x * x) - eps)))) end
function tmp = code(x, eps) tmp = eps / (x + sqrt(((x * x) - eps))); end
code[x_, eps_] := N[(eps / N[(x + N[Sqrt[N[(N[(x * x), $MachinePrecision] - eps), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{\varepsilon}{x + \sqrt{x \cdot x - \varepsilon}}
\end{array}
herbie shell --seed 2023174
(FPCore (x eps)
:name "ENA, Section 1.4, Exercise 4d"
:precision binary64
:pre (and (and (<= 0.0 x) (<= x 1000000000.0)) (and (<= -1.0 eps) (<= eps 1.0)))
:herbie-target
(/ eps (+ x (sqrt (- (* x x) eps))))
(- x (sqrt (- (* x x) eps))))