
(FPCore (x) :precision binary64 (sqrt (* 2.0 (pow x 2.0))))
double code(double x) {
return sqrt((2.0 * pow(x, 2.0)));
}
real(8) function code(x)
real(8), intent (in) :: x
code = sqrt((2.0d0 * (x ** 2.0d0)))
end function
public static double code(double x) {
return Math.sqrt((2.0 * Math.pow(x, 2.0)));
}
def code(x): return math.sqrt((2.0 * math.pow(x, 2.0)))
function code(x) return sqrt(Float64(2.0 * (x ^ 2.0))) end
function tmp = code(x) tmp = sqrt((2.0 * (x ^ 2.0))); end
code[x_] := N[Sqrt[N[(2.0 * N[Power[x, 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\sqrt{2 \cdot {x}^{2}}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 8 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x) :precision binary64 (sqrt (* 2.0 (pow x 2.0))))
double code(double x) {
return sqrt((2.0 * pow(x, 2.0)));
}
real(8) function code(x)
real(8), intent (in) :: x
code = sqrt((2.0d0 * (x ** 2.0d0)))
end function
public static double code(double x) {
return Math.sqrt((2.0 * Math.pow(x, 2.0)));
}
def code(x): return math.sqrt((2.0 * math.pow(x, 2.0)))
function code(x) return sqrt(Float64(2.0 * (x ^ 2.0))) end
function tmp = code(x) tmp = sqrt((2.0 * (x ^ 2.0))); end
code[x_] := N[Sqrt[N[(2.0 * N[Power[x, 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
\sqrt{2 \cdot {x}^{2}}
\end{array}
(FPCore (x) :precision binary64 (if (<= x -2e-310) (* (- (pow 16.0 0.03125)) (* (pow 64.0 0.0625) x)) (* (pow x 0.75) (pow (* 4.0 x) 0.25))))
double code(double x) {
double tmp;
if (x <= -2e-310) {
tmp = -pow(16.0, 0.03125) * (pow(64.0, 0.0625) * x);
} else {
tmp = pow(x, 0.75) * pow((4.0 * x), 0.25);
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-2d-310)) then
tmp = -(16.0d0 ** 0.03125d0) * ((64.0d0 ** 0.0625d0) * x)
else
tmp = (x ** 0.75d0) * ((4.0d0 * x) ** 0.25d0)
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -2e-310) {
tmp = -Math.pow(16.0, 0.03125) * (Math.pow(64.0, 0.0625) * x);
} else {
tmp = Math.pow(x, 0.75) * Math.pow((4.0 * x), 0.25);
}
return tmp;
}
def code(x): tmp = 0 if x <= -2e-310: tmp = -math.pow(16.0, 0.03125) * (math.pow(64.0, 0.0625) * x) else: tmp = math.pow(x, 0.75) * math.pow((4.0 * x), 0.25) return tmp
function code(x) tmp = 0.0 if (x <= -2e-310) tmp = Float64(Float64(-(16.0 ^ 0.03125)) * Float64((64.0 ^ 0.0625) * x)); else tmp = Float64((x ^ 0.75) * (Float64(4.0 * x) ^ 0.25)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -2e-310) tmp = -(16.0 ^ 0.03125) * ((64.0 ^ 0.0625) * x); else tmp = (x ^ 0.75) * ((4.0 * x) ^ 0.25); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -2e-310], N[((-N[Power[16.0, 0.03125], $MachinePrecision]) * N[(N[Power[64.0, 0.0625], $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision], N[(N[Power[x, 0.75], $MachinePrecision] * N[Power[N[(4.0 * x), $MachinePrecision], 0.25], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -2 \cdot 10^{-310}:\\
\;\;\;\;\left(-{16}^{0.03125}\right) \cdot \left({64}^{0.0625} \cdot x\right)\\
\mathbf{else}:\\
\;\;\;\;{x}^{0.75} \cdot {\left(4 \cdot x\right)}^{0.25}\\
\end{array}
\end{array}
if x < -1.999999999999994e-310Initial program 56.2%
Applied rewrites2.1%
lift-*.f64N/A
+-lft-identityN/A
flip-+N/A
neg-sub0N/A
lift-neg.f64N/A
div-invN/A
inv-powN/A
metadata-evalN/A
metadata-evalN/A
pow-powN/A
pow2N/A
lift-neg.f64N/A
lift-neg.f64N/A
sqr-negN/A
pow2N/A
pow-powN/A
metadata-evalN/A
metadata-evalN/A
inv-powN/A
+-lft-identityN/A
div-invN/A
flip--N/A
neg-sub0N/A
Applied rewrites99.3%
lift-*.f64N/A
lift-neg.f64N/A
lift-pow.f64N/A
sqr-powN/A
distribute-rgt-neg-inN/A
associate-*r*N/A
lower-*.f64N/A
lift-*.f64N/A
*-commutativeN/A
associate-*l*N/A
lower-*.f64N/A
lift-pow.f64N/A
sqr-powN/A
pow-prod-downN/A
pow-prod-downN/A
lower-pow.f64N/A
metadata-evalN/A
metadata-evalN/A
metadata-evalN/A
lower-neg.f64N/A
sqr-powN/A
pow-prod-downN/A
Applied rewrites99.6%
if -1.999999999999994e-310 < x Initial program 52.2%
Applied rewrites99.3%
lift-*.f64N/A
+-lft-identityN/A
flip-+N/A
neg-sub0N/A
lift-neg.f64N/A
div-invN/A
inv-powN/A
metadata-evalN/A
metadata-evalN/A
pow-powN/A
pow2N/A
lift-neg.f64N/A
lift-neg.f64N/A
sqr-negN/A
pow2N/A
pow-powN/A
metadata-evalN/A
metadata-evalN/A
inv-powN/A
+-lft-identityN/A
div-invN/A
flip--N/A
neg-sub0N/A
Applied rewrites2.4%
lift-*.f64N/A
lift-*.f64N/A
associate-*l*N/A
*-commutativeN/A
lift-neg.f64N/A
neg-mul-1N/A
associate-*r*N/A
*-commutativeN/A
metadata-evalN/A
associate-/r/N/A
unpow-1N/A
lift-pow.f64N/A
lift-/.f64N/A
associate-*l*N/A
Applied rewrites99.5%
Final simplification99.5%
(FPCore (x) :precision binary64 (if (<= x -2e-310) (/ (* -2.0 x) (sqrt 2.0)) (* (pow x 0.75) (pow (* 4.0 x) 0.25))))
double code(double x) {
double tmp;
if (x <= -2e-310) {
tmp = (-2.0 * x) / sqrt(2.0);
} else {
tmp = pow(x, 0.75) * pow((4.0 * x), 0.25);
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-2d-310)) then
tmp = ((-2.0d0) * x) / sqrt(2.0d0)
else
tmp = (x ** 0.75d0) * ((4.0d0 * x) ** 0.25d0)
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -2e-310) {
tmp = (-2.0 * x) / Math.sqrt(2.0);
} else {
tmp = Math.pow(x, 0.75) * Math.pow((4.0 * x), 0.25);
}
return tmp;
}
def code(x): tmp = 0 if x <= -2e-310: tmp = (-2.0 * x) / math.sqrt(2.0) else: tmp = math.pow(x, 0.75) * math.pow((4.0 * x), 0.25) return tmp
function code(x) tmp = 0.0 if (x <= -2e-310) tmp = Float64(Float64(-2.0 * x) / sqrt(2.0)); else tmp = Float64((x ^ 0.75) * (Float64(4.0 * x) ^ 0.25)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -2e-310) tmp = (-2.0 * x) / sqrt(2.0); else tmp = (x ^ 0.75) * ((4.0 * x) ^ 0.25); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -2e-310], N[(N[(-2.0 * x), $MachinePrecision] / N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision], N[(N[Power[x, 0.75], $MachinePrecision] * N[Power[N[(4.0 * x), $MachinePrecision], 0.25], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -2 \cdot 10^{-310}:\\
\;\;\;\;\frac{-2 \cdot x}{\sqrt{2}}\\
\mathbf{else}:\\
\;\;\;\;{x}^{0.75} \cdot {\left(4 \cdot x\right)}^{0.25}\\
\end{array}
\end{array}
if x < -1.999999999999994e-310Initial program 56.2%
Applied rewrites2.1%
lift-*.f64N/A
+-lft-identityN/A
flip-+N/A
neg-sub0N/A
lift-neg.f64N/A
div-invN/A
inv-powN/A
metadata-evalN/A
metadata-evalN/A
pow-powN/A
pow2N/A
lift-neg.f64N/A
lift-neg.f64N/A
sqr-negN/A
pow2N/A
pow-powN/A
metadata-evalN/A
metadata-evalN/A
inv-powN/A
+-lft-identityN/A
div-invN/A
flip--N/A
neg-sub0N/A
Applied rewrites99.3%
Applied rewrites55.9%
lift-/.f64N/A
lift-*.f64N/A
associate-/l/N/A
lift--.f64N/A
sub0-negN/A
distribute-frac-negN/A
lift-*.f64N/A
lift-*.f64N/A
associate-*l*N/A
associate-/l*N/A
*-commutativeN/A
associate-/l*N/A
*-inversesN/A
metadata-evalN/A
lower-/.f64N/A
*-commutativeN/A
distribute-lft-neg-inN/A
lower-*.f64N/A
metadata-eval99.4
Applied rewrites99.4%
if -1.999999999999994e-310 < x Initial program 52.2%
Applied rewrites99.3%
lift-*.f64N/A
+-lft-identityN/A
flip-+N/A
neg-sub0N/A
lift-neg.f64N/A
div-invN/A
inv-powN/A
metadata-evalN/A
metadata-evalN/A
pow-powN/A
pow2N/A
lift-neg.f64N/A
lift-neg.f64N/A
sqr-negN/A
pow2N/A
pow-powN/A
metadata-evalN/A
metadata-evalN/A
inv-powN/A
+-lft-identityN/A
div-invN/A
flip--N/A
neg-sub0N/A
Applied rewrites2.4%
lift-*.f64N/A
lift-*.f64N/A
associate-*l*N/A
*-commutativeN/A
lift-neg.f64N/A
neg-mul-1N/A
associate-*r*N/A
*-commutativeN/A
metadata-evalN/A
associate-/r/N/A
unpow-1N/A
lift-pow.f64N/A
lift-/.f64N/A
associate-*l*N/A
Applied rewrites99.5%
Final simplification99.4%
(FPCore (x) :precision binary64 (if (<= x -2e-310) (/ (* -2.0 x) (sqrt 2.0)) (/ (sqrt (* 2.0 x)) (pow x -0.5))))
double code(double x) {
double tmp;
if (x <= -2e-310) {
tmp = (-2.0 * x) / sqrt(2.0);
} else {
tmp = sqrt((2.0 * x)) / pow(x, -0.5);
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-2d-310)) then
tmp = ((-2.0d0) * x) / sqrt(2.0d0)
else
tmp = sqrt((2.0d0 * x)) / (x ** (-0.5d0))
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -2e-310) {
tmp = (-2.0 * x) / Math.sqrt(2.0);
} else {
tmp = Math.sqrt((2.0 * x)) / Math.pow(x, -0.5);
}
return tmp;
}
def code(x): tmp = 0 if x <= -2e-310: tmp = (-2.0 * x) / math.sqrt(2.0) else: tmp = math.sqrt((2.0 * x)) / math.pow(x, -0.5) return tmp
function code(x) tmp = 0.0 if (x <= -2e-310) tmp = Float64(Float64(-2.0 * x) / sqrt(2.0)); else tmp = Float64(sqrt(Float64(2.0 * x)) / (x ^ -0.5)); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -2e-310) tmp = (-2.0 * x) / sqrt(2.0); else tmp = sqrt((2.0 * x)) / (x ^ -0.5); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -2e-310], N[(N[(-2.0 * x), $MachinePrecision] / N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision], N[(N[Sqrt[N[(2.0 * x), $MachinePrecision]], $MachinePrecision] / N[Power[x, -0.5], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -2 \cdot 10^{-310}:\\
\;\;\;\;\frac{-2 \cdot x}{\sqrt{2}}\\
\mathbf{else}:\\
\;\;\;\;\frac{\sqrt{2 \cdot x}}{{x}^{-0.5}}\\
\end{array}
\end{array}
if x < -1.999999999999994e-310Initial program 56.2%
Applied rewrites2.1%
lift-*.f64N/A
+-lft-identityN/A
flip-+N/A
neg-sub0N/A
lift-neg.f64N/A
div-invN/A
inv-powN/A
metadata-evalN/A
metadata-evalN/A
pow-powN/A
pow2N/A
lift-neg.f64N/A
lift-neg.f64N/A
sqr-negN/A
pow2N/A
pow-powN/A
metadata-evalN/A
metadata-evalN/A
inv-powN/A
+-lft-identityN/A
div-invN/A
flip--N/A
neg-sub0N/A
Applied rewrites99.3%
Applied rewrites55.9%
lift-/.f64N/A
lift-*.f64N/A
associate-/l/N/A
lift--.f64N/A
sub0-negN/A
distribute-frac-negN/A
lift-*.f64N/A
lift-*.f64N/A
associate-*l*N/A
associate-/l*N/A
*-commutativeN/A
associate-/l*N/A
*-inversesN/A
metadata-evalN/A
lower-/.f64N/A
*-commutativeN/A
distribute-lft-neg-inN/A
lower-*.f64N/A
metadata-eval99.4
Applied rewrites99.4%
if -1.999999999999994e-310 < x Initial program 52.2%
Applied rewrites99.3%
lift-*.f64N/A
+-lft-identityN/A
flip-+N/A
neg-sub0N/A
lift-neg.f64N/A
div-invN/A
inv-powN/A
metadata-evalN/A
metadata-evalN/A
pow-powN/A
pow2N/A
lift-neg.f64N/A
lift-neg.f64N/A
sqr-negN/A
pow2N/A
pow-powN/A
metadata-evalN/A
metadata-evalN/A
inv-powN/A
+-lft-identityN/A
div-invN/A
flip--N/A
neg-sub0N/A
Applied rewrites2.4%
Applied rewrites99.4%
(FPCore (x) :precision binary64 (if (<= x -2e-310) (/ (* -2.0 x) (sqrt 2.0)) (* (sqrt x) (sqrt (* 2.0 x)))))
double code(double x) {
double tmp;
if (x <= -2e-310) {
tmp = (-2.0 * x) / sqrt(2.0);
} else {
tmp = sqrt(x) * sqrt((2.0 * x));
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-2d-310)) then
tmp = ((-2.0d0) * x) / sqrt(2.0d0)
else
tmp = sqrt(x) * sqrt((2.0d0 * x))
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -2e-310) {
tmp = (-2.0 * x) / Math.sqrt(2.0);
} else {
tmp = Math.sqrt(x) * Math.sqrt((2.0 * x));
}
return tmp;
}
def code(x): tmp = 0 if x <= -2e-310: tmp = (-2.0 * x) / math.sqrt(2.0) else: tmp = math.sqrt(x) * math.sqrt((2.0 * x)) return tmp
function code(x) tmp = 0.0 if (x <= -2e-310) tmp = Float64(Float64(-2.0 * x) / sqrt(2.0)); else tmp = Float64(sqrt(x) * sqrt(Float64(2.0 * x))); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -2e-310) tmp = (-2.0 * x) / sqrt(2.0); else tmp = sqrt(x) * sqrt((2.0 * x)); end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -2e-310], N[(N[(-2.0 * x), $MachinePrecision] / N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision], N[(N[Sqrt[x], $MachinePrecision] * N[Sqrt[N[(2.0 * x), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -2 \cdot 10^{-310}:\\
\;\;\;\;\frac{-2 \cdot x}{\sqrt{2}}\\
\mathbf{else}:\\
\;\;\;\;\sqrt{x} \cdot \sqrt{2 \cdot x}\\
\end{array}
\end{array}
if x < -1.999999999999994e-310Initial program 56.2%
Applied rewrites2.1%
lift-*.f64N/A
+-lft-identityN/A
flip-+N/A
neg-sub0N/A
lift-neg.f64N/A
div-invN/A
inv-powN/A
metadata-evalN/A
metadata-evalN/A
pow-powN/A
pow2N/A
lift-neg.f64N/A
lift-neg.f64N/A
sqr-negN/A
pow2N/A
pow-powN/A
metadata-evalN/A
metadata-evalN/A
inv-powN/A
+-lft-identityN/A
div-invN/A
flip--N/A
neg-sub0N/A
Applied rewrites99.3%
Applied rewrites55.9%
lift-/.f64N/A
lift-*.f64N/A
associate-/l/N/A
lift--.f64N/A
sub0-negN/A
distribute-frac-negN/A
lift-*.f64N/A
lift-*.f64N/A
associate-*l*N/A
associate-/l*N/A
*-commutativeN/A
associate-/l*N/A
*-inversesN/A
metadata-evalN/A
lower-/.f64N/A
*-commutativeN/A
distribute-lft-neg-inN/A
lower-*.f64N/A
metadata-eval99.4
Applied rewrites99.4%
if -1.999999999999994e-310 < x Initial program 52.2%
Applied rewrites99.3%
lift-*.f64N/A
unpow1N/A
metadata-evalN/A
sqr-powN/A
associate-*r*N/A
lift-sqrt.f64N/A
pow1/2N/A
metadata-evalN/A
metadata-evalN/A
unpow-prod-downN/A
lower-*.f64N/A
pow1/2N/A
lower-sqrt.f64N/A
*-commutativeN/A
lower-*.f64N/A
metadata-evalN/A
metadata-evalN/A
pow1/2N/A
lower-sqrt.f6499.4
Applied rewrites99.4%
Final simplification99.4%
(FPCore (x) :precision binary64 (if (<= x -2e-310) (/ (* -2.0 x) (sqrt 2.0)) (* (sqrt 2.0) x)))
double code(double x) {
double tmp;
if (x <= -2e-310) {
tmp = (-2.0 * x) / sqrt(2.0);
} else {
tmp = sqrt(2.0) * x;
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-2d-310)) then
tmp = ((-2.0d0) * x) / sqrt(2.0d0)
else
tmp = sqrt(2.0d0) * x
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -2e-310) {
tmp = (-2.0 * x) / Math.sqrt(2.0);
} else {
tmp = Math.sqrt(2.0) * x;
}
return tmp;
}
def code(x): tmp = 0 if x <= -2e-310: tmp = (-2.0 * x) / math.sqrt(2.0) else: tmp = math.sqrt(2.0) * x return tmp
function code(x) tmp = 0.0 if (x <= -2e-310) tmp = Float64(Float64(-2.0 * x) / sqrt(2.0)); else tmp = Float64(sqrt(2.0) * x); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -2e-310) tmp = (-2.0 * x) / sqrt(2.0); else tmp = sqrt(2.0) * x; end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -2e-310], N[(N[(-2.0 * x), $MachinePrecision] / N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision], N[(N[Sqrt[2.0], $MachinePrecision] * x), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -2 \cdot 10^{-310}:\\
\;\;\;\;\frac{-2 \cdot x}{\sqrt{2}}\\
\mathbf{else}:\\
\;\;\;\;\sqrt{2} \cdot x\\
\end{array}
\end{array}
if x < -1.999999999999994e-310Initial program 56.2%
Applied rewrites2.1%
lift-*.f64N/A
+-lft-identityN/A
flip-+N/A
neg-sub0N/A
lift-neg.f64N/A
div-invN/A
inv-powN/A
metadata-evalN/A
metadata-evalN/A
pow-powN/A
pow2N/A
lift-neg.f64N/A
lift-neg.f64N/A
sqr-negN/A
pow2N/A
pow-powN/A
metadata-evalN/A
metadata-evalN/A
inv-powN/A
+-lft-identityN/A
div-invN/A
flip--N/A
neg-sub0N/A
Applied rewrites99.3%
Applied rewrites55.9%
lift-/.f64N/A
lift-*.f64N/A
associate-/l/N/A
lift--.f64N/A
sub0-negN/A
distribute-frac-negN/A
lift-*.f64N/A
lift-*.f64N/A
associate-*l*N/A
associate-/l*N/A
*-commutativeN/A
associate-/l*N/A
*-inversesN/A
metadata-evalN/A
lower-/.f64N/A
*-commutativeN/A
distribute-lft-neg-inN/A
lower-*.f64N/A
metadata-eval99.4
Applied rewrites99.4%
if -1.999999999999994e-310 < x Initial program 52.2%
Applied rewrites99.3%
(FPCore (x) :precision binary64 (if (<= x -2e-310) (* (- x) (sqrt 2.0)) (* (sqrt 2.0) x)))
double code(double x) {
double tmp;
if (x <= -2e-310) {
tmp = -x * sqrt(2.0);
} else {
tmp = sqrt(2.0) * x;
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-2d-310)) then
tmp = -x * sqrt(2.0d0)
else
tmp = sqrt(2.0d0) * x
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -2e-310) {
tmp = -x * Math.sqrt(2.0);
} else {
tmp = Math.sqrt(2.0) * x;
}
return tmp;
}
def code(x): tmp = 0 if x <= -2e-310: tmp = -x * math.sqrt(2.0) else: tmp = math.sqrt(2.0) * x return tmp
function code(x) tmp = 0.0 if (x <= -2e-310) tmp = Float64(Float64(-x) * sqrt(2.0)); else tmp = Float64(sqrt(2.0) * x); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -2e-310) tmp = -x * sqrt(2.0); else tmp = sqrt(2.0) * x; end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -2e-310], N[((-x) * N[Sqrt[2.0], $MachinePrecision]), $MachinePrecision], N[(N[Sqrt[2.0], $MachinePrecision] * x), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -2 \cdot 10^{-310}:\\
\;\;\;\;\left(-x\right) \cdot \sqrt{2}\\
\mathbf{else}:\\
\;\;\;\;\sqrt{2} \cdot x\\
\end{array}
\end{array}
if x < -1.999999999999994e-310Initial program 56.2%
Taylor expanded in x around -inf
associate-*r*N/A
lower-*.f64N/A
mul-1-negN/A
lower-neg.f64N/A
lower-sqrt.f6499.3
Applied rewrites99.3%
if -1.999999999999994e-310 < x Initial program 52.2%
Applied rewrites99.3%
(FPCore (x) :precision binary64 (if (<= x -4e-206) (sqrt 2.0) (* (sqrt 2.0) x)))
double code(double x) {
double tmp;
if (x <= -4e-206) {
tmp = sqrt(2.0);
} else {
tmp = sqrt(2.0) * x;
}
return tmp;
}
real(8) function code(x)
real(8), intent (in) :: x
real(8) :: tmp
if (x <= (-4d-206)) then
tmp = sqrt(2.0d0)
else
tmp = sqrt(2.0d0) * x
end if
code = tmp
end function
public static double code(double x) {
double tmp;
if (x <= -4e-206) {
tmp = Math.sqrt(2.0);
} else {
tmp = Math.sqrt(2.0) * x;
}
return tmp;
}
def code(x): tmp = 0 if x <= -4e-206: tmp = math.sqrt(2.0) else: tmp = math.sqrt(2.0) * x return tmp
function code(x) tmp = 0.0 if (x <= -4e-206) tmp = sqrt(2.0); else tmp = Float64(sqrt(2.0) * x); end return tmp end
function tmp_2 = code(x) tmp = 0.0; if (x <= -4e-206) tmp = sqrt(2.0); else tmp = sqrt(2.0) * x; end tmp_2 = tmp; end
code[x_] := If[LessEqual[x, -4e-206], N[Sqrt[2.0], $MachinePrecision], N[(N[Sqrt[2.0], $MachinePrecision] * x), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -4 \cdot 10^{-206}:\\
\;\;\;\;\sqrt{2}\\
\mathbf{else}:\\
\;\;\;\;\sqrt{2} \cdot x\\
\end{array}
\end{array}
if x < -4.00000000000000011e-206Initial program 65.8%
Applied rewrites5.9%
if -4.00000000000000011e-206 < x Initial program 45.3%
Applied rewrites84.9%
(FPCore (x) :precision binary64 (sqrt 2.0))
double code(double x) {
return sqrt(2.0);
}
real(8) function code(x)
real(8), intent (in) :: x
code = sqrt(2.0d0)
end function
public static double code(double x) {
return Math.sqrt(2.0);
}
def code(x): return math.sqrt(2.0)
function code(x) return sqrt(2.0) end
function tmp = code(x) tmp = sqrt(2.0); end
code[x_] := N[Sqrt[2.0], $MachinePrecision]
\begin{array}{l}
\\
\sqrt{2}
\end{array}
Initial program 54.3%
Applied rewrites5.4%
herbie shell --seed 2024241
(FPCore (x)
:name "sqrt D (should all be same)"
:precision binary64
(sqrt (* 2.0 (pow x 2.0))))