
(FPCore (p r q) :precision binary64 (* (/ 1.0 2.0) (- (+ (fabs p) (fabs r)) (sqrt (+ (pow (- p r) 2.0) (* 4.0 (pow q 2.0)))))))
double code(double p, double r, double q) {
return (1.0 / 2.0) * ((fabs(p) + fabs(r)) - sqrt((pow((p - r), 2.0) + (4.0 * pow(q, 2.0)))));
}
real(8) function code(p, r, q)
real(8), intent (in) :: p
real(8), intent (in) :: r
real(8), intent (in) :: q
code = (1.0d0 / 2.0d0) * ((abs(p) + abs(r)) - sqrt((((p - r) ** 2.0d0) + (4.0d0 * (q ** 2.0d0)))))
end function
public static double code(double p, double r, double q) {
return (1.0 / 2.0) * ((Math.abs(p) + Math.abs(r)) - Math.sqrt((Math.pow((p - r), 2.0) + (4.0 * Math.pow(q, 2.0)))));
}
def code(p, r, q): return (1.0 / 2.0) * ((math.fabs(p) + math.fabs(r)) - math.sqrt((math.pow((p - r), 2.0) + (4.0 * math.pow(q, 2.0)))))
function code(p, r, q) return Float64(Float64(1.0 / 2.0) * Float64(Float64(abs(p) + abs(r)) - sqrt(Float64((Float64(p - r) ^ 2.0) + Float64(4.0 * (q ^ 2.0)))))) end
function tmp = code(p, r, q) tmp = (1.0 / 2.0) * ((abs(p) + abs(r)) - sqrt((((p - r) ^ 2.0) + (4.0 * (q ^ 2.0))))); end
code[p_, r_, q_] := N[(N[(1.0 / 2.0), $MachinePrecision] * N[(N[(N[Abs[p], $MachinePrecision] + N[Abs[r], $MachinePrecision]), $MachinePrecision] - N[Sqrt[N[(N[Power[N[(p - r), $MachinePrecision], 2.0], $MachinePrecision] + N[(4.0 * N[Power[q, 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{1}{2} \cdot \left(\left(\left|p\right| + \left|r\right|\right) - \sqrt{{\left(p - r\right)}^{2} + 4 \cdot {q}^{2}}\right)
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 6 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (p r q) :precision binary64 (* (/ 1.0 2.0) (- (+ (fabs p) (fabs r)) (sqrt (+ (pow (- p r) 2.0) (* 4.0 (pow q 2.0)))))))
double code(double p, double r, double q) {
return (1.0 / 2.0) * ((fabs(p) + fabs(r)) - sqrt((pow((p - r), 2.0) + (4.0 * pow(q, 2.0)))));
}
real(8) function code(p, r, q)
real(8), intent (in) :: p
real(8), intent (in) :: r
real(8), intent (in) :: q
code = (1.0d0 / 2.0d0) * ((abs(p) + abs(r)) - sqrt((((p - r) ** 2.0d0) + (4.0d0 * (q ** 2.0d0)))))
end function
public static double code(double p, double r, double q) {
return (1.0 / 2.0) * ((Math.abs(p) + Math.abs(r)) - Math.sqrt((Math.pow((p - r), 2.0) + (4.0 * Math.pow(q, 2.0)))));
}
def code(p, r, q): return (1.0 / 2.0) * ((math.fabs(p) + math.fabs(r)) - math.sqrt((math.pow((p - r), 2.0) + (4.0 * math.pow(q, 2.0)))))
function code(p, r, q) return Float64(Float64(1.0 / 2.0) * Float64(Float64(abs(p) + abs(r)) - sqrt(Float64((Float64(p - r) ^ 2.0) + Float64(4.0 * (q ^ 2.0)))))) end
function tmp = code(p, r, q) tmp = (1.0 / 2.0) * ((abs(p) + abs(r)) - sqrt((((p - r) ^ 2.0) + (4.0 * (q ^ 2.0))))); end
code[p_, r_, q_] := N[(N[(1.0 / 2.0), $MachinePrecision] * N[(N[(N[Abs[p], $MachinePrecision] + N[Abs[r], $MachinePrecision]), $MachinePrecision] - N[Sqrt[N[(N[Power[N[(p - r), $MachinePrecision], 2.0], $MachinePrecision] + N[(4.0 * N[Power[q, 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{1}{2} \cdot \left(\left(\left|p\right| + \left|r\right|\right) - \sqrt{{\left(p - r\right)}^{2} + 4 \cdot {q}^{2}}\right)
\end{array}
q_m = (fabs.f64 q)
NOTE: p, r, and q_m should be sorted in increasing order before calling this function.
(FPCore (p r q_m)
:precision binary64
(if (<= (pow q_m 2.0) 5e-161)
(* p (+ (* (/ (+ (fabs p) (- (fabs r) r)) (- p)) -0.5) 0.5))
(if (<= (pow q_m 2.0) 8e+188)
(fma (+ (fabs p) p) 0.5 (/ (* (- q_m) q_m) r))
(- q_m))))q_m = fabs(q);
assert(p < r && r < q_m);
double code(double p, double r, double q_m) {
double tmp;
if (pow(q_m, 2.0) <= 5e-161) {
tmp = p * ((((fabs(p) + (fabs(r) - r)) / -p) * -0.5) + 0.5);
} else if (pow(q_m, 2.0) <= 8e+188) {
tmp = fma((fabs(p) + p), 0.5, ((-q_m * q_m) / r));
} else {
tmp = -q_m;
}
return tmp;
}
q_m = abs(q) p, r, q_m = sort([p, r, q_m]) function code(p, r, q_m) tmp = 0.0 if ((q_m ^ 2.0) <= 5e-161) tmp = Float64(p * Float64(Float64(Float64(Float64(abs(p) + Float64(abs(r) - r)) / Float64(-p)) * -0.5) + 0.5)); elseif ((q_m ^ 2.0) <= 8e+188) tmp = fma(Float64(abs(p) + p), 0.5, Float64(Float64(Float64(-q_m) * q_m) / r)); else tmp = Float64(-q_m); end return tmp end
q_m = N[Abs[q], $MachinePrecision] NOTE: p, r, and q_m should be sorted in increasing order before calling this function. code[p_, r_, q$95$m_] := If[LessEqual[N[Power[q$95$m, 2.0], $MachinePrecision], 5e-161], N[(p * N[(N[(N[(N[(N[Abs[p], $MachinePrecision] + N[(N[Abs[r], $MachinePrecision] - r), $MachinePrecision]), $MachinePrecision] / (-p)), $MachinePrecision] * -0.5), $MachinePrecision] + 0.5), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[Power[q$95$m, 2.0], $MachinePrecision], 8e+188], N[(N[(N[Abs[p], $MachinePrecision] + p), $MachinePrecision] * 0.5 + N[(N[((-q$95$m) * q$95$m), $MachinePrecision] / r), $MachinePrecision]), $MachinePrecision], (-q$95$m)]]
\begin{array}{l}
q_m = \left|q\right|
\\
[p, r, q_m] = \mathsf{sort}([p, r, q_m])\\
\\
\begin{array}{l}
\mathbf{if}\;{q\_m}^{2} \leq 5 \cdot 10^{-161}:\\
\;\;\;\;p \cdot \left(\frac{\left|p\right| + \left(\left|r\right| - r\right)}{-p} \cdot -0.5 + 0.5\right)\\
\mathbf{elif}\;{q\_m}^{2} \leq 8 \cdot 10^{+188}:\\
\;\;\;\;\mathsf{fma}\left(\left|p\right| + p, 0.5, \frac{\left(-q\_m\right) \cdot q\_m}{r}\right)\\
\mathbf{else}:\\
\;\;\;\;-q\_m\\
\end{array}
\end{array}
if (pow.f64 q #s(literal 2 binary64)) < 4.9999999999999999e-161Initial program 30.0%
Taylor expanded in q around inf
mul-1-negN/A
lower-neg.f648.8
Applied rewrites8.8%
Taylor expanded in p around -inf
associate-*r*N/A
mul-1-negN/A
lower-*.f64N/A
lower-neg.f64N/A
lower--.f64N/A
*-commutativeN/A
lower-*.f64N/A
lower-/.f64N/A
associate--l+N/A
lower-+.f64N/A
lower-fabs.f64N/A
lower--.f64N/A
lower-fabs.f6444.3
Applied rewrites44.3%
if 4.9999999999999999e-161 < (pow.f64 q #s(literal 2 binary64)) < 8.0000000000000002e188Initial program 18.3%
Taylor expanded in p around 0
distribute-lft-outN/A
*-commutativeN/A
lower-*.f64N/A
Applied rewrites19.2%
Taylor expanded in q around 0
Applied rewrites24.7%
Applied rewrites20.1%
Taylor expanded in r around inf
Applied rewrites20.8%
if 8.0000000000000002e188 < (pow.f64 q #s(literal 2 binary64)) Initial program 22.6%
Taylor expanded in q around inf
mul-1-negN/A
lower-neg.f6426.2
Applied rewrites26.2%
Final simplification32.0%
q_m = (fabs.f64 q)
NOTE: p, r, and q_m should be sorted in increasing order before calling this function.
(FPCore (p r q_m)
:precision binary64
(let* ((t_0 (+ (fabs p) p)))
(if (<= (pow q_m 2.0) 1e-177)
(* t_0 0.5)
(if (<= (pow q_m 2.0) 8e+188)
(fma t_0 0.5 (/ (* (- q_m) q_m) r))
(- q_m)))))q_m = fabs(q);
assert(p < r && r < q_m);
double code(double p, double r, double q_m) {
double t_0 = fabs(p) + p;
double tmp;
if (pow(q_m, 2.0) <= 1e-177) {
tmp = t_0 * 0.5;
} else if (pow(q_m, 2.0) <= 8e+188) {
tmp = fma(t_0, 0.5, ((-q_m * q_m) / r));
} else {
tmp = -q_m;
}
return tmp;
}
q_m = abs(q) p, r, q_m = sort([p, r, q_m]) function code(p, r, q_m) t_0 = Float64(abs(p) + p) tmp = 0.0 if ((q_m ^ 2.0) <= 1e-177) tmp = Float64(t_0 * 0.5); elseif ((q_m ^ 2.0) <= 8e+188) tmp = fma(t_0, 0.5, Float64(Float64(Float64(-q_m) * q_m) / r)); else tmp = Float64(-q_m); end return tmp end
q_m = N[Abs[q], $MachinePrecision]
NOTE: p, r, and q_m should be sorted in increasing order before calling this function.
code[p_, r_, q$95$m_] := Block[{t$95$0 = N[(N[Abs[p], $MachinePrecision] + p), $MachinePrecision]}, If[LessEqual[N[Power[q$95$m, 2.0], $MachinePrecision], 1e-177], N[(t$95$0 * 0.5), $MachinePrecision], If[LessEqual[N[Power[q$95$m, 2.0], $MachinePrecision], 8e+188], N[(t$95$0 * 0.5 + N[(N[((-q$95$m) * q$95$m), $MachinePrecision] / r), $MachinePrecision]), $MachinePrecision], (-q$95$m)]]]
\begin{array}{l}
q_m = \left|q\right|
\\
[p, r, q_m] = \mathsf{sort}([p, r, q_m])\\
\\
\begin{array}{l}
t_0 := \left|p\right| + p\\
\mathbf{if}\;{q\_m}^{2} \leq 10^{-177}:\\
\;\;\;\;t\_0 \cdot 0.5\\
\mathbf{elif}\;{q\_m}^{2} \leq 8 \cdot 10^{+188}:\\
\;\;\;\;\mathsf{fma}\left(t\_0, 0.5, \frac{\left(-q\_m\right) \cdot q\_m}{r}\right)\\
\mathbf{else}:\\
\;\;\;\;-q\_m\\
\end{array}
\end{array}
if (pow.f64 q #s(literal 2 binary64)) < 9.99999999999999952e-178Initial program 29.7%
Taylor expanded in p around 0
distribute-lft-outN/A
*-commutativeN/A
lower-*.f64N/A
Applied rewrites9.0%
Taylor expanded in q around 0
Applied rewrites31.4%
Applied rewrites45.5%
if 9.99999999999999952e-178 < (pow.f64 q #s(literal 2 binary64)) < 8.0000000000000002e188Initial program 19.5%
Taylor expanded in p around 0
distribute-lft-outN/A
*-commutativeN/A
lower-*.f64N/A
Applied rewrites20.5%
Taylor expanded in q around 0
Applied rewrites23.5%
Applied rewrites20.6%
Taylor expanded in r around inf
Applied rewrites21.3%
if 8.0000000000000002e188 < (pow.f64 q #s(literal 2 binary64)) Initial program 22.6%
Taylor expanded in q around inf
mul-1-negN/A
lower-neg.f6426.2
Applied rewrites26.2%
Final simplification32.2%
q_m = (fabs.f64 q) NOTE: p, r, and q_m should be sorted in increasing order before calling this function. (FPCore (p r q_m) :precision binary64 (if (<= (pow q_m 2.0) 1e+89) (* (+ (fabs p) p) 0.5) (- q_m)))
q_m = fabs(q);
assert(p < r && r < q_m);
double code(double p, double r, double q_m) {
double tmp;
if (pow(q_m, 2.0) <= 1e+89) {
tmp = (fabs(p) + p) * 0.5;
} else {
tmp = -q_m;
}
return tmp;
}
q_m = abs(q)
NOTE: p, r, and q_m should be sorted in increasing order before calling this function.
real(8) function code(p, r, q_m)
real(8), intent (in) :: p
real(8), intent (in) :: r
real(8), intent (in) :: q_m
real(8) :: tmp
if ((q_m ** 2.0d0) <= 1d+89) then
tmp = (abs(p) + p) * 0.5d0
else
tmp = -q_m
end if
code = tmp
end function
q_m = Math.abs(q);
assert p < r && r < q_m;
public static double code(double p, double r, double q_m) {
double tmp;
if (Math.pow(q_m, 2.0) <= 1e+89) {
tmp = (Math.abs(p) + p) * 0.5;
} else {
tmp = -q_m;
}
return tmp;
}
q_m = math.fabs(q) [p, r, q_m] = sort([p, r, q_m]) def code(p, r, q_m): tmp = 0 if math.pow(q_m, 2.0) <= 1e+89: tmp = (math.fabs(p) + p) * 0.5 else: tmp = -q_m return tmp
q_m = abs(q) p, r, q_m = sort([p, r, q_m]) function code(p, r, q_m) tmp = 0.0 if ((q_m ^ 2.0) <= 1e+89) tmp = Float64(Float64(abs(p) + p) * 0.5); else tmp = Float64(-q_m); end return tmp end
q_m = abs(q);
p, r, q_m = num2cell(sort([p, r, q_m])){:}
function tmp_2 = code(p, r, q_m)
tmp = 0.0;
if ((q_m ^ 2.0) <= 1e+89)
tmp = (abs(p) + p) * 0.5;
else
tmp = -q_m;
end
tmp_2 = tmp;
end
q_m = N[Abs[q], $MachinePrecision] NOTE: p, r, and q_m should be sorted in increasing order before calling this function. code[p_, r_, q$95$m_] := If[LessEqual[N[Power[q$95$m, 2.0], $MachinePrecision], 1e+89], N[(N[(N[Abs[p], $MachinePrecision] + p), $MachinePrecision] * 0.5), $MachinePrecision], (-q$95$m)]
\begin{array}{l}
q_m = \left|q\right|
\\
[p, r, q_m] = \mathsf{sort}([p, r, q_m])\\
\\
\begin{array}{l}
\mathbf{if}\;{q\_m}^{2} \leq 10^{+89}:\\
\;\;\;\;\left(\left|p\right| + p\right) \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;-q\_m\\
\end{array}
\end{array}
if (pow.f64 q #s(literal 2 binary64)) < 9.99999999999999995e88Initial program 25.4%
Taylor expanded in p around 0
distribute-lft-outN/A
*-commutativeN/A
lower-*.f64N/A
Applied rewrites11.8%
Taylor expanded in q around 0
Applied rewrites30.7%
Applied rewrites34.9%
if 9.99999999999999995e88 < (pow.f64 q #s(literal 2 binary64)) Initial program 23.3%
Taylor expanded in q around inf
mul-1-negN/A
lower-neg.f6423.0
Applied rewrites23.0%
Final simplification29.5%
q_m = (fabs.f64 q) NOTE: p, r, and q_m should be sorted in increasing order before calling this function. (FPCore (p r q_m) :precision binary64 (if (<= (pow q_m 2.0) 2e-121) (* 0.0 0.5) (- q_m)))
q_m = fabs(q);
assert(p < r && r < q_m);
double code(double p, double r, double q_m) {
double tmp;
if (pow(q_m, 2.0) <= 2e-121) {
tmp = 0.0 * 0.5;
} else {
tmp = -q_m;
}
return tmp;
}
q_m = abs(q)
NOTE: p, r, and q_m should be sorted in increasing order before calling this function.
real(8) function code(p, r, q_m)
real(8), intent (in) :: p
real(8), intent (in) :: r
real(8), intent (in) :: q_m
real(8) :: tmp
if ((q_m ** 2.0d0) <= 2d-121) then
tmp = 0.0d0 * 0.5d0
else
tmp = -q_m
end if
code = tmp
end function
q_m = Math.abs(q);
assert p < r && r < q_m;
public static double code(double p, double r, double q_m) {
double tmp;
if (Math.pow(q_m, 2.0) <= 2e-121) {
tmp = 0.0 * 0.5;
} else {
tmp = -q_m;
}
return tmp;
}
q_m = math.fabs(q) [p, r, q_m] = sort([p, r, q_m]) def code(p, r, q_m): tmp = 0 if math.pow(q_m, 2.0) <= 2e-121: tmp = 0.0 * 0.5 else: tmp = -q_m return tmp
q_m = abs(q) p, r, q_m = sort([p, r, q_m]) function code(p, r, q_m) tmp = 0.0 if ((q_m ^ 2.0) <= 2e-121) tmp = Float64(0.0 * 0.5); else tmp = Float64(-q_m); end return tmp end
q_m = abs(q);
p, r, q_m = num2cell(sort([p, r, q_m])){:}
function tmp_2 = code(p, r, q_m)
tmp = 0.0;
if ((q_m ^ 2.0) <= 2e-121)
tmp = 0.0 * 0.5;
else
tmp = -q_m;
end
tmp_2 = tmp;
end
q_m = N[Abs[q], $MachinePrecision] NOTE: p, r, and q_m should be sorted in increasing order before calling this function. code[p_, r_, q$95$m_] := If[LessEqual[N[Power[q$95$m, 2.0], $MachinePrecision], 2e-121], N[(0.0 * 0.5), $MachinePrecision], (-q$95$m)]
\begin{array}{l}
q_m = \left|q\right|
\\
[p, r, q_m] = \mathsf{sort}([p, r, q_m])\\
\\
\begin{array}{l}
\mathbf{if}\;{q\_m}^{2} \leq 2 \cdot 10^{-121}:\\
\;\;\;\;0 \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;-q\_m\\
\end{array}
\end{array}
if (pow.f64 q #s(literal 2 binary64)) < 2e-121Initial program 27.5%
Taylor expanded in p around 0
distribute-lft-outN/A
*-commutativeN/A
lower-*.f64N/A
Applied rewrites9.7%
Taylor expanded in q around 0
Applied rewrites30.6%
Applied rewrites22.7%
Applied rewrites39.9%
if 2e-121 < (pow.f64 q #s(literal 2 binary64)) Initial program 22.2%
Taylor expanded in q around inf
mul-1-negN/A
lower-neg.f6420.1
Applied rewrites20.1%
q_m = (fabs.f64 q) NOTE: p, r, and q_m should be sorted in increasing order before calling this function. (FPCore (p r q_m) :precision binary64 (if (<= q_m 1.1e-230) (* 0.0 0.5) (if (<= q_m 3.1e+44) (* (* 2.0 p) 0.5) (- q_m))))
q_m = fabs(q);
assert(p < r && r < q_m);
double code(double p, double r, double q_m) {
double tmp;
if (q_m <= 1.1e-230) {
tmp = 0.0 * 0.5;
} else if (q_m <= 3.1e+44) {
tmp = (2.0 * p) * 0.5;
} else {
tmp = -q_m;
}
return tmp;
}
q_m = abs(q)
NOTE: p, r, and q_m should be sorted in increasing order before calling this function.
real(8) function code(p, r, q_m)
real(8), intent (in) :: p
real(8), intent (in) :: r
real(8), intent (in) :: q_m
real(8) :: tmp
if (q_m <= 1.1d-230) then
tmp = 0.0d0 * 0.5d0
else if (q_m <= 3.1d+44) then
tmp = (2.0d0 * p) * 0.5d0
else
tmp = -q_m
end if
code = tmp
end function
q_m = Math.abs(q);
assert p < r && r < q_m;
public static double code(double p, double r, double q_m) {
double tmp;
if (q_m <= 1.1e-230) {
tmp = 0.0 * 0.5;
} else if (q_m <= 3.1e+44) {
tmp = (2.0 * p) * 0.5;
} else {
tmp = -q_m;
}
return tmp;
}
q_m = math.fabs(q) [p, r, q_m] = sort([p, r, q_m]) def code(p, r, q_m): tmp = 0 if q_m <= 1.1e-230: tmp = 0.0 * 0.5 elif q_m <= 3.1e+44: tmp = (2.0 * p) * 0.5 else: tmp = -q_m return tmp
q_m = abs(q) p, r, q_m = sort([p, r, q_m]) function code(p, r, q_m) tmp = 0.0 if (q_m <= 1.1e-230) tmp = Float64(0.0 * 0.5); elseif (q_m <= 3.1e+44) tmp = Float64(Float64(2.0 * p) * 0.5); else tmp = Float64(-q_m); end return tmp end
q_m = abs(q);
p, r, q_m = num2cell(sort([p, r, q_m])){:}
function tmp_2 = code(p, r, q_m)
tmp = 0.0;
if (q_m <= 1.1e-230)
tmp = 0.0 * 0.5;
elseif (q_m <= 3.1e+44)
tmp = (2.0 * p) * 0.5;
else
tmp = -q_m;
end
tmp_2 = tmp;
end
q_m = N[Abs[q], $MachinePrecision] NOTE: p, r, and q_m should be sorted in increasing order before calling this function. code[p_, r_, q$95$m_] := If[LessEqual[q$95$m, 1.1e-230], N[(0.0 * 0.5), $MachinePrecision], If[LessEqual[q$95$m, 3.1e+44], N[(N[(2.0 * p), $MachinePrecision] * 0.5), $MachinePrecision], (-q$95$m)]]
\begin{array}{l}
q_m = \left|q\right|
\\
[p, r, q_m] = \mathsf{sort}([p, r, q_m])\\
\\
\begin{array}{l}
\mathbf{if}\;q\_m \leq 1.1 \cdot 10^{-230}:\\
\;\;\;\;0 \cdot 0.5\\
\mathbf{elif}\;q\_m \leq 3.1 \cdot 10^{+44}:\\
\;\;\;\;\left(2 \cdot p\right) \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;-q\_m\\
\end{array}
\end{array}
if q < 1.0999999999999999e-230Initial program 26.2%
Taylor expanded in p around 0
distribute-lft-outN/A
*-commutativeN/A
lower-*.f64N/A
Applied rewrites17.0%
Taylor expanded in q around 0
Applied rewrites18.6%
Applied rewrites11.5%
Applied rewrites23.8%
if 1.0999999999999999e-230 < q < 3.09999999999999996e44Initial program 24.0%
Taylor expanded in p around 0
distribute-lft-outN/A
*-commutativeN/A
lower-*.f64N/A
Applied rewrites14.4%
Taylor expanded in q around 0
Applied rewrites29.6%
Applied rewrites18.7%
Taylor expanded in p around 0
Applied rewrites19.8%
if 3.09999999999999996e44 < q Initial program 19.3%
Taylor expanded in q around inf
mul-1-negN/A
lower-neg.f6454.6
Applied rewrites54.6%
q_m = (fabs.f64 q) NOTE: p, r, and q_m should be sorted in increasing order before calling this function. (FPCore (p r q_m) :precision binary64 (- q_m))
q_m = fabs(q);
assert(p < r && r < q_m);
double code(double p, double r, double q_m) {
return -q_m;
}
q_m = abs(q)
NOTE: p, r, and q_m should be sorted in increasing order before calling this function.
real(8) function code(p, r, q_m)
real(8), intent (in) :: p
real(8), intent (in) :: r
real(8), intent (in) :: q_m
code = -q_m
end function
q_m = Math.abs(q);
assert p < r && r < q_m;
public static double code(double p, double r, double q_m) {
return -q_m;
}
q_m = math.fabs(q) [p, r, q_m] = sort([p, r, q_m]) def code(p, r, q_m): return -q_m
q_m = abs(q) p, r, q_m = sort([p, r, q_m]) function code(p, r, q_m) return Float64(-q_m) end
q_m = abs(q);
p, r, q_m = num2cell(sort([p, r, q_m])){:}
function tmp = code(p, r, q_m)
tmp = -q_m;
end
q_m = N[Abs[q], $MachinePrecision] NOTE: p, r, and q_m should be sorted in increasing order before calling this function. code[p_, r_, q$95$m_] := (-q$95$m)
\begin{array}{l}
q_m = \left|q\right|
\\
[p, r, q_m] = \mathsf{sort}([p, r, q_m])\\
\\
-q\_m
\end{array}
Initial program 24.5%
Taylor expanded in q around inf
mul-1-negN/A
lower-neg.f6415.1
Applied rewrites15.1%
herbie shell --seed 2024326
(FPCore (p r q)
:name "1/2(abs(p)+abs(r) - sqrt((p-r)^2 + 4q^2))"
:precision binary64
(* (/ 1.0 2.0) (- (+ (fabs p) (fabs r)) (sqrt (+ (pow (- p r) 2.0) (* 4.0 (pow q 2.0)))))))