
(FPCore (a b c) :precision binary64 (/ (- (- b) (sqrt (- (* b b) (* 4.0 (* a c))))) (* 2.0 a)))
double code(double a, double b, double c) {
return (-b - sqrt(((b * b) - (4.0 * (a * c))))) / (2.0 * a);
}
real(8) function code(a, b, c)
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
code = (-b - sqrt(((b * b) - (4.0d0 * (a * c))))) / (2.0d0 * a)
end function
public static double code(double a, double b, double c) {
return (-b - Math.sqrt(((b * b) - (4.0 * (a * c))))) / (2.0 * a);
}
def code(a, b, c): return (-b - math.sqrt(((b * b) - (4.0 * (a * c))))) / (2.0 * a)
function code(a, b, c) return Float64(Float64(Float64(-b) - sqrt(Float64(Float64(b * b) - Float64(4.0 * Float64(a * c))))) / Float64(2.0 * a)) end
function tmp = code(a, b, c) tmp = (-b - sqrt(((b * b) - (4.0 * (a * c))))) / (2.0 * a); end
code[a_, b_, c_] := N[(N[((-b) - N[Sqrt[N[(N[(b * b), $MachinePrecision] - N[(4.0 * N[(a * c), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{\left(-b\right) - \sqrt{b \cdot b - 4 \cdot \left(a \cdot c\right)}}{2 \cdot a}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 7 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (a b c) :precision binary64 (/ (- (- b) (sqrt (- (* b b) (* 4.0 (* a c))))) (* 2.0 a)))
double code(double a, double b, double c) {
return (-b - sqrt(((b * b) - (4.0 * (a * c))))) / (2.0 * a);
}
real(8) function code(a, b, c)
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
code = (-b - sqrt(((b * b) - (4.0d0 * (a * c))))) / (2.0d0 * a)
end function
public static double code(double a, double b, double c) {
return (-b - Math.sqrt(((b * b) - (4.0 * (a * c))))) / (2.0 * a);
}
def code(a, b, c): return (-b - math.sqrt(((b * b) - (4.0 * (a * c))))) / (2.0 * a)
function code(a, b, c) return Float64(Float64(Float64(-b) - sqrt(Float64(Float64(b * b) - Float64(4.0 * Float64(a * c))))) / Float64(2.0 * a)) end
function tmp = code(a, b, c) tmp = (-b - sqrt(((b * b) - (4.0 * (a * c))))) / (2.0 * a); end
code[a_, b_, c_] := N[(N[((-b) - N[Sqrt[N[(N[(b * b), $MachinePrecision] - N[(4.0 * N[(a * c), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\frac{\left(-b\right) - \sqrt{b \cdot b - 4 \cdot \left(a \cdot c\right)}}{2 \cdot a}
\end{array}
(FPCore (a b c)
:precision binary64
(if (<= b -2.3e-52)
(/ (- c) b)
(if (<= b 8e+66)
(/ (- (- b) (sqrt (- (* b b) (* (* c 4.0) a)))) (* a 2.0))
(- (/ c b) (/ b a)))))
double code(double a, double b, double c) {
double tmp;
if (b <= -2.3e-52) {
tmp = -c / b;
} else if (b <= 8e+66) {
tmp = (-b - sqrt(((b * b) - ((c * 4.0) * a)))) / (a * 2.0);
} else {
tmp = (c / b) - (b / a);
}
return tmp;
}
real(8) function code(a, b, c)
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: tmp
if (b <= (-2.3d-52)) then
tmp = -c / b
else if (b <= 8d+66) then
tmp = (-b - sqrt(((b * b) - ((c * 4.0d0) * a)))) / (a * 2.0d0)
else
tmp = (c / b) - (b / a)
end if
code = tmp
end function
public static double code(double a, double b, double c) {
double tmp;
if (b <= -2.3e-52) {
tmp = -c / b;
} else if (b <= 8e+66) {
tmp = (-b - Math.sqrt(((b * b) - ((c * 4.0) * a)))) / (a * 2.0);
} else {
tmp = (c / b) - (b / a);
}
return tmp;
}
def code(a, b, c): tmp = 0 if b <= -2.3e-52: tmp = -c / b elif b <= 8e+66: tmp = (-b - math.sqrt(((b * b) - ((c * 4.0) * a)))) / (a * 2.0) else: tmp = (c / b) - (b / a) return tmp
function code(a, b, c) tmp = 0.0 if (b <= -2.3e-52) tmp = Float64(Float64(-c) / b); elseif (b <= 8e+66) tmp = Float64(Float64(Float64(-b) - sqrt(Float64(Float64(b * b) - Float64(Float64(c * 4.0) * a)))) / Float64(a * 2.0)); else tmp = Float64(Float64(c / b) - Float64(b / a)); end return tmp end
function tmp_2 = code(a, b, c) tmp = 0.0; if (b <= -2.3e-52) tmp = -c / b; elseif (b <= 8e+66) tmp = (-b - sqrt(((b * b) - ((c * 4.0) * a)))) / (a * 2.0); else tmp = (c / b) - (b / a); end tmp_2 = tmp; end
code[a_, b_, c_] := If[LessEqual[b, -2.3e-52], N[((-c) / b), $MachinePrecision], If[LessEqual[b, 8e+66], N[(N[((-b) - N[Sqrt[N[(N[(b * b), $MachinePrecision] - N[(N[(c * 4.0), $MachinePrecision] * a), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / N[(a * 2.0), $MachinePrecision]), $MachinePrecision], N[(N[(c / b), $MachinePrecision] - N[(b / a), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;b \leq -2.3 \cdot 10^{-52}:\\
\;\;\;\;\frac{-c}{b}\\
\mathbf{elif}\;b \leq 8 \cdot 10^{+66}:\\
\;\;\;\;\frac{\left(-b\right) - \sqrt{b \cdot b - \left(c \cdot 4\right) \cdot a}}{a \cdot 2}\\
\mathbf{else}:\\
\;\;\;\;\frac{c}{b} - \frac{b}{a}\\
\end{array}
\end{array}
if b < -2.29999999999999994e-52Initial program 17.6%
div-sub16.5%
sub-neg16.5%
neg-mul-116.5%
*-commutative16.5%
associate-/l*14.4%
distribute-neg-frac14.4%
neg-mul-114.4%
*-commutative14.4%
associate-/l*16.5%
distribute-rgt-out17.6%
associate-/r*17.6%
metadata-eval17.6%
sub-neg17.6%
+-commutative17.6%
Simplified17.7%
Taylor expanded in b around -inf 85.3%
associate-*r/85.3%
neg-mul-185.3%
Simplified85.3%
if -2.29999999999999994e-52 < b < 7.99999999999999956e66Initial program 83.0%
*-commutative83.0%
*-commutative83.0%
sqr-neg83.0%
*-commutative83.0%
sqr-neg83.0%
*-commutative83.0%
associate-*r*83.1%
Simplified83.1%
if 7.99999999999999956e66 < b Initial program 62.7%
div-sub62.7%
sub-neg62.7%
neg-mul-162.7%
*-commutative62.7%
associate-/l*62.7%
distribute-neg-frac62.7%
neg-mul-162.7%
*-commutative62.7%
associate-/l*62.7%
distribute-rgt-out62.7%
associate-/r*62.7%
metadata-eval62.7%
sub-neg62.7%
+-commutative62.7%
Simplified62.7%
Taylor expanded in c around 0 94.2%
+-commutative94.2%
mul-1-neg94.2%
unsub-neg94.2%
Simplified94.2%
Final simplification86.7%
(FPCore (a b c)
:precision binary64
(if (<= b -2.1e-51)
(/ (- c) b)
(if (<= b 3e+66)
(/ (- (- b) (sqrt (- (* b b) (* 4.0 (* c a))))) (* a 2.0))
(- (/ c b) (/ b a)))))
double code(double a, double b, double c) {
double tmp;
if (b <= -2.1e-51) {
tmp = -c / b;
} else if (b <= 3e+66) {
tmp = (-b - sqrt(((b * b) - (4.0 * (c * a))))) / (a * 2.0);
} else {
tmp = (c / b) - (b / a);
}
return tmp;
}
real(8) function code(a, b, c)
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: tmp
if (b <= (-2.1d-51)) then
tmp = -c / b
else if (b <= 3d+66) then
tmp = (-b - sqrt(((b * b) - (4.0d0 * (c * a))))) / (a * 2.0d0)
else
tmp = (c / b) - (b / a)
end if
code = tmp
end function
public static double code(double a, double b, double c) {
double tmp;
if (b <= -2.1e-51) {
tmp = -c / b;
} else if (b <= 3e+66) {
tmp = (-b - Math.sqrt(((b * b) - (4.0 * (c * a))))) / (a * 2.0);
} else {
tmp = (c / b) - (b / a);
}
return tmp;
}
def code(a, b, c): tmp = 0 if b <= -2.1e-51: tmp = -c / b elif b <= 3e+66: tmp = (-b - math.sqrt(((b * b) - (4.0 * (c * a))))) / (a * 2.0) else: tmp = (c / b) - (b / a) return tmp
function code(a, b, c) tmp = 0.0 if (b <= -2.1e-51) tmp = Float64(Float64(-c) / b); elseif (b <= 3e+66) tmp = Float64(Float64(Float64(-b) - sqrt(Float64(Float64(b * b) - Float64(4.0 * Float64(c * a))))) / Float64(a * 2.0)); else tmp = Float64(Float64(c / b) - Float64(b / a)); end return tmp end
function tmp_2 = code(a, b, c) tmp = 0.0; if (b <= -2.1e-51) tmp = -c / b; elseif (b <= 3e+66) tmp = (-b - sqrt(((b * b) - (4.0 * (c * a))))) / (a * 2.0); else tmp = (c / b) - (b / a); end tmp_2 = tmp; end
code[a_, b_, c_] := If[LessEqual[b, -2.1e-51], N[((-c) / b), $MachinePrecision], If[LessEqual[b, 3e+66], N[(N[((-b) - N[Sqrt[N[(N[(b * b), $MachinePrecision] - N[(4.0 * N[(c * a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / N[(a * 2.0), $MachinePrecision]), $MachinePrecision], N[(N[(c / b), $MachinePrecision] - N[(b / a), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;b \leq -2.1 \cdot 10^{-51}:\\
\;\;\;\;\frac{-c}{b}\\
\mathbf{elif}\;b \leq 3 \cdot 10^{+66}:\\
\;\;\;\;\frac{\left(-b\right) - \sqrt{b \cdot b - 4 \cdot \left(c \cdot a\right)}}{a \cdot 2}\\
\mathbf{else}:\\
\;\;\;\;\frac{c}{b} - \frac{b}{a}\\
\end{array}
\end{array}
if b < -2.10000000000000002e-51Initial program 17.6%
div-sub16.5%
sub-neg16.5%
neg-mul-116.5%
*-commutative16.5%
associate-/l*14.4%
distribute-neg-frac14.4%
neg-mul-114.4%
*-commutative14.4%
associate-/l*16.5%
distribute-rgt-out17.6%
associate-/r*17.6%
metadata-eval17.6%
sub-neg17.6%
+-commutative17.6%
Simplified17.7%
Taylor expanded in b around -inf 85.3%
associate-*r/85.3%
neg-mul-185.3%
Simplified85.3%
if -2.10000000000000002e-51 < b < 3.00000000000000002e66Initial program 83.0%
if 3.00000000000000002e66 < b Initial program 62.7%
div-sub62.7%
sub-neg62.7%
neg-mul-162.7%
*-commutative62.7%
associate-/l*62.7%
distribute-neg-frac62.7%
neg-mul-162.7%
*-commutative62.7%
associate-/l*62.7%
distribute-rgt-out62.7%
associate-/r*62.7%
metadata-eval62.7%
sub-neg62.7%
+-commutative62.7%
Simplified62.7%
Taylor expanded in c around 0 94.2%
+-commutative94.2%
mul-1-neg94.2%
unsub-neg94.2%
Simplified94.2%
Final simplification86.6%
(FPCore (a b c)
:precision binary64
(if (<= b -1.65e-68)
(/ (- c) b)
(if (<= b 80000000.0)
(* (/ -0.5 a) (+ b (sqrt (* (* c a) -4.0))))
(/ b (- a)))))
double code(double a, double b, double c) {
double tmp;
if (b <= -1.65e-68) {
tmp = -c / b;
} else if (b <= 80000000.0) {
tmp = (-0.5 / a) * (b + sqrt(((c * a) * -4.0)));
} else {
tmp = b / -a;
}
return tmp;
}
real(8) function code(a, b, c)
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: tmp
if (b <= (-1.65d-68)) then
tmp = -c / b
else if (b <= 80000000.0d0) then
tmp = ((-0.5d0) / a) * (b + sqrt(((c * a) * (-4.0d0))))
else
tmp = b / -a
end if
code = tmp
end function
public static double code(double a, double b, double c) {
double tmp;
if (b <= -1.65e-68) {
tmp = -c / b;
} else if (b <= 80000000.0) {
tmp = (-0.5 / a) * (b + Math.sqrt(((c * a) * -4.0)));
} else {
tmp = b / -a;
}
return tmp;
}
def code(a, b, c): tmp = 0 if b <= -1.65e-68: tmp = -c / b elif b <= 80000000.0: tmp = (-0.5 / a) * (b + math.sqrt(((c * a) * -4.0))) else: tmp = b / -a return tmp
function code(a, b, c) tmp = 0.0 if (b <= -1.65e-68) tmp = Float64(Float64(-c) / b); elseif (b <= 80000000.0) tmp = Float64(Float64(-0.5 / a) * Float64(b + sqrt(Float64(Float64(c * a) * -4.0)))); else tmp = Float64(b / Float64(-a)); end return tmp end
function tmp_2 = code(a, b, c) tmp = 0.0; if (b <= -1.65e-68) tmp = -c / b; elseif (b <= 80000000.0) tmp = (-0.5 / a) * (b + sqrt(((c * a) * -4.0))); else tmp = b / -a; end tmp_2 = tmp; end
code[a_, b_, c_] := If[LessEqual[b, -1.65e-68], N[((-c) / b), $MachinePrecision], If[LessEqual[b, 80000000.0], N[(N[(-0.5 / a), $MachinePrecision] * N[(b + N[Sqrt[N[(N[(c * a), $MachinePrecision] * -4.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(b / (-a)), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;b \leq -1.65 \cdot 10^{-68}:\\
\;\;\;\;\frac{-c}{b}\\
\mathbf{elif}\;b \leq 80000000:\\
\;\;\;\;\frac{-0.5}{a} \cdot \left(b + \sqrt{\left(c \cdot a\right) \cdot -4}\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{b}{-a}\\
\end{array}
\end{array}
if b < -1.6499999999999999e-68Initial program 18.9%
div-sub17.8%
sub-neg17.8%
neg-mul-117.8%
*-commutative17.8%
associate-/l*15.8%
distribute-neg-frac15.8%
neg-mul-115.8%
*-commutative15.8%
associate-/l*17.8%
distribute-rgt-out18.9%
associate-/r*18.9%
metadata-eval18.9%
sub-neg18.9%
+-commutative18.9%
Simplified18.9%
Taylor expanded in b around -inf 83.4%
associate-*r/83.4%
neg-mul-183.4%
Simplified83.4%
if -1.6499999999999999e-68 < b < 8e7Initial program 82.9%
div-sub82.9%
sub-neg82.9%
neg-mul-182.9%
*-commutative82.9%
associate-/l*82.9%
distribute-neg-frac82.9%
neg-mul-182.9%
*-commutative82.9%
associate-/l*82.8%
distribute-rgt-out82.8%
associate-/r*82.8%
metadata-eval82.8%
sub-neg82.8%
+-commutative82.8%
Simplified82.9%
Taylor expanded in a around inf 72.1%
if 8e7 < b Initial program 68.5%
div-sub68.5%
sub-neg68.5%
neg-mul-168.5%
*-commutative68.5%
associate-/l*68.5%
distribute-neg-frac68.5%
neg-mul-168.5%
*-commutative68.5%
associate-/l*68.5%
distribute-rgt-out68.5%
associate-/r*68.5%
metadata-eval68.5%
sub-neg68.5%
+-commutative68.5%
Simplified68.5%
Taylor expanded in a around 0 90.6%
associate-*r/90.6%
mul-1-neg90.6%
Simplified90.6%
Final simplification82.0%
(FPCore (a b c) :precision binary64 (if (<= b -2e-310) (/ (- c) b) (/ b (- a))))
double code(double a, double b, double c) {
double tmp;
if (b <= -2e-310) {
tmp = -c / b;
} else {
tmp = b / -a;
}
return tmp;
}
real(8) function code(a, b, c)
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: tmp
if (b <= (-2d-310)) then
tmp = -c / b
else
tmp = b / -a
end if
code = tmp
end function
public static double code(double a, double b, double c) {
double tmp;
if (b <= -2e-310) {
tmp = -c / b;
} else {
tmp = b / -a;
}
return tmp;
}
def code(a, b, c): tmp = 0 if b <= -2e-310: tmp = -c / b else: tmp = b / -a return tmp
function code(a, b, c) tmp = 0.0 if (b <= -2e-310) tmp = Float64(Float64(-c) / b); else tmp = Float64(b / Float64(-a)); end return tmp end
function tmp_2 = code(a, b, c) tmp = 0.0; if (b <= -2e-310) tmp = -c / b; else tmp = b / -a; end tmp_2 = tmp; end
code[a_, b_, c_] := If[LessEqual[b, -2e-310], N[((-c) / b), $MachinePrecision], N[(b / (-a)), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;b \leq -2 \cdot 10^{-310}:\\
\;\;\;\;\frac{-c}{b}\\
\mathbf{else}:\\
\;\;\;\;\frac{b}{-a}\\
\end{array}
\end{array}
if b < -1.999999999999994e-310Initial program 37.2%
div-sub36.4%
sub-neg36.4%
neg-mul-136.4%
*-commutative36.4%
associate-/l*35.0%
distribute-neg-frac35.0%
neg-mul-135.0%
*-commutative35.0%
associate-/l*36.4%
distribute-rgt-out37.2%
associate-/r*37.2%
metadata-eval37.2%
sub-neg37.2%
+-commutative37.2%
Simplified37.3%
Taylor expanded in b around -inf 61.3%
associate-*r/61.3%
neg-mul-161.3%
Simplified61.3%
if -1.999999999999994e-310 < b Initial program 73.6%
div-sub73.6%
sub-neg73.6%
neg-mul-173.6%
*-commutative73.6%
associate-/l*73.6%
distribute-neg-frac73.6%
neg-mul-173.6%
*-commutative73.6%
associate-/l*73.5%
distribute-rgt-out73.6%
associate-/r*73.6%
metadata-eval73.6%
sub-neg73.6%
+-commutative73.6%
Simplified73.6%
Taylor expanded in a around 0 66.3%
associate-*r/66.3%
mul-1-neg66.3%
Simplified66.3%
Final simplification63.7%
(FPCore (a b c) :precision binary64 (if (<= b -4.1e+40) (/ c b) (/ b (- a))))
double code(double a, double b, double c) {
double tmp;
if (b <= -4.1e+40) {
tmp = c / b;
} else {
tmp = b / -a;
}
return tmp;
}
real(8) function code(a, b, c)
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: tmp
if (b <= (-4.1d+40)) then
tmp = c / b
else
tmp = b / -a
end if
code = tmp
end function
public static double code(double a, double b, double c) {
double tmp;
if (b <= -4.1e+40) {
tmp = c / b;
} else {
tmp = b / -a;
}
return tmp;
}
def code(a, b, c): tmp = 0 if b <= -4.1e+40: tmp = c / b else: tmp = b / -a return tmp
function code(a, b, c) tmp = 0.0 if (b <= -4.1e+40) tmp = Float64(c / b); else tmp = Float64(b / Float64(-a)); end return tmp end
function tmp_2 = code(a, b, c) tmp = 0.0; if (b <= -4.1e+40) tmp = c / b; else tmp = b / -a; end tmp_2 = tmp; end
code[a_, b_, c_] := If[LessEqual[b, -4.1e+40], N[(c / b), $MachinePrecision], N[(b / (-a)), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;b \leq -4.1 \cdot 10^{+40}:\\
\;\;\;\;\frac{c}{b}\\
\mathbf{else}:\\
\;\;\;\;\frac{b}{-a}\\
\end{array}
\end{array}
if b < -4.1000000000000002e40Initial program 14.9%
Taylor expanded in a around 0 2.3%
distribute-lft-out--2.3%
associate-/l*2.5%
Simplified2.5%
Taylor expanded in a around inf 30.9%
if -4.1000000000000002e40 < b Initial program 68.0%
div-sub68.0%
sub-neg68.0%
neg-mul-168.0%
*-commutative68.0%
associate-/l*67.9%
distribute-neg-frac67.9%
neg-mul-167.9%
*-commutative67.9%
associate-/l*67.9%
distribute-rgt-out67.9%
associate-/r*67.9%
metadata-eval67.9%
sub-neg67.9%
+-commutative67.9%
Simplified68.0%
Taylor expanded in a around 0 43.6%
associate-*r/43.6%
mul-1-neg43.6%
Simplified43.6%
Final simplification40.4%
(FPCore (a b c) :precision binary64 (/ c b))
double code(double a, double b, double c) {
return c / b;
}
real(8) function code(a, b, c)
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
code = c / b
end function
public static double code(double a, double b, double c) {
return c / b;
}
def code(a, b, c): return c / b
function code(a, b, c) return Float64(c / b) end
function tmp = code(a, b, c) tmp = c / b; end
code[a_, b_, c_] := N[(c / b), $MachinePrecision]
\begin{array}{l}
\\
\frac{c}{b}
\end{array}
Initial program 54.7%
Taylor expanded in a around 0 31.7%
distribute-lft-out--31.7%
associate-/l*33.0%
Simplified33.0%
Taylor expanded in a around inf 10.0%
(FPCore (a b c) :precision binary64 (/ b a))
double code(double a, double b, double c) {
return b / a;
}
real(8) function code(a, b, c)
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
code = b / a
end function
public static double code(double a, double b, double c) {
return b / a;
}
def code(a, b, c): return b / a
function code(a, b, c) return Float64(b / a) end
function tmp = code(a, b, c) tmp = b / a; end
code[a_, b_, c_] := N[(b / a), $MachinePrecision]
\begin{array}{l}
\\
\frac{b}{a}
\end{array}
Initial program 54.7%
div-sub54.3%
sub-neg54.3%
neg-mul-154.3%
*-commutative54.3%
associate-/l*53.6%
distribute-neg-frac53.6%
neg-mul-153.6%
*-commutative53.6%
associate-/l*54.3%
distribute-rgt-out54.7%
associate-/r*54.7%
metadata-eval54.7%
sub-neg54.7%
+-commutative54.7%
Simplified54.7%
Applied egg-rr15.8%
Taylor expanded in b around -inf 2.8%
(FPCore (a b c)
:precision binary64
(let* ((t_0 (sqrt (- (* b b) (* 4.0 (* a c))))))
(if (< b 0.0)
(/ c (* a (/ (+ (- b) t_0) (* 2.0 a))))
(/ (- (- b) t_0) (* 2.0 a)))))
double code(double a, double b, double c) {
double t_0 = sqrt(((b * b) - (4.0 * (a * c))));
double tmp;
if (b < 0.0) {
tmp = c / (a * ((-b + t_0) / (2.0 * a)));
} else {
tmp = (-b - t_0) / (2.0 * a);
}
return tmp;
}
real(8) function code(a, b, c)
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: t_0
real(8) :: tmp
t_0 = sqrt(((b * b) - (4.0d0 * (a * c))))
if (b < 0.0d0) then
tmp = c / (a * ((-b + t_0) / (2.0d0 * a)))
else
tmp = (-b - t_0) / (2.0d0 * a)
end if
code = tmp
end function
public static double code(double a, double b, double c) {
double t_0 = Math.sqrt(((b * b) - (4.0 * (a * c))));
double tmp;
if (b < 0.0) {
tmp = c / (a * ((-b + t_0) / (2.0 * a)));
} else {
tmp = (-b - t_0) / (2.0 * a);
}
return tmp;
}
def code(a, b, c): t_0 = math.sqrt(((b * b) - (4.0 * (a * c)))) tmp = 0 if b < 0.0: tmp = c / (a * ((-b + t_0) / (2.0 * a))) else: tmp = (-b - t_0) / (2.0 * a) return tmp
function code(a, b, c) t_0 = sqrt(Float64(Float64(b * b) - Float64(4.0 * Float64(a * c)))) tmp = 0.0 if (b < 0.0) tmp = Float64(c / Float64(a * Float64(Float64(Float64(-b) + t_0) / Float64(2.0 * a)))); else tmp = Float64(Float64(Float64(-b) - t_0) / Float64(2.0 * a)); end return tmp end
function tmp_2 = code(a, b, c) t_0 = sqrt(((b * b) - (4.0 * (a * c)))); tmp = 0.0; if (b < 0.0) tmp = c / (a * ((-b + t_0) / (2.0 * a))); else tmp = (-b - t_0) / (2.0 * a); end tmp_2 = tmp; end
code[a_, b_, c_] := Block[{t$95$0 = N[Sqrt[N[(N[(b * b), $MachinePrecision] - N[(4.0 * N[(a * c), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, If[Less[b, 0.0], N[(c / N[(a * N[(N[((-b) + t$95$0), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[((-b) - t$95$0), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \sqrt{b \cdot b - 4 \cdot \left(a \cdot c\right)}\\
\mathbf{if}\;b < 0:\\
\;\;\;\;\frac{c}{a \cdot \frac{\left(-b\right) + t\_0}{2 \cdot a}}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-b\right) - t\_0}{2 \cdot a}\\
\end{array}
\end{array}
herbie shell --seed 2024096
(FPCore (a b c)
:name "The quadratic formula (r2)"
:precision binary64
:alt
(if (< b 0.0) (/ c (* a (/ (+ (- b) (sqrt (- (* b b) (* 4.0 (* a c))))) (* 2.0 a)))) (/ (- (- b) (sqrt (- (* b b) (* 4.0 (* a c))))) (* 2.0 a)))
(/ (- (- b) (sqrt (- (* b b) (* 4.0 (* a c))))) (* 2.0 a)))