
(FPCore (a b c) :precision binary64 (let* ((t_0 (sqrt (- (* b b) (* (* 4.0 a) c))))) (if (>= b 0.0) (/ (* 2.0 c) (- (- b) t_0)) (/ (+ (- 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 = (2.0 * c) / (-b - t_0);
} else {
tmp = (-b + t_0) / (2.0 * a);
}
return tmp;
}
module fmin_fmax_functions
implicit none
private
public fmax
public fmin
interface fmax
module procedure fmax88
module procedure fmax44
module procedure fmax84
module procedure fmax48
end interface
interface fmin
module procedure fmin88
module procedure fmin44
module procedure fmin84
module procedure fmin48
end interface
contains
real(8) function fmax88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(4) function fmax44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(8) function fmax84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmax48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
end function
real(8) function fmin88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(4) function fmin44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(8) function fmin84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmin48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
end function
end module
real(8) function code(a, b, c)
use fmin_fmax_functions
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 = (2.0d0 * c) / (-b - t_0)
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 = (2.0 * c) / (-b - t_0);
} 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 = (2.0 * c) / (-b - t_0) else: tmp = (-b + t_0) / (2.0 * a) return tmp
function code(a, b, c) t_0 = sqrt(Float64(Float64(b * b) - Float64(Float64(4.0 * a) * c))) tmp = 0.0 if (b >= 0.0) tmp = Float64(Float64(2.0 * c) / Float64(Float64(-b) - t_0)); 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 = (2.0 * c) / (-b - t_0); 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[(N[(4.0 * a), $MachinePrecision] * c), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, If[GreaterEqual[b, 0.0], N[(N[(2.0 * c), $MachinePrecision] / N[((-b) - t$95$0), $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 - \left(4 \cdot a\right) \cdot c}\\
\mathbf{if}\;b \geq 0:\\
\;\;\;\;\frac{2 \cdot c}{\left(-b\right) - t\_0}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-b\right) + t\_0}{2 \cdot a}\\
\end{array}
\end{array}
Herbie found 10 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (a b c) :precision binary64 (let* ((t_0 (sqrt (- (* b b) (* (* 4.0 a) c))))) (if (>= b 0.0) (/ (* 2.0 c) (- (- b) t_0)) (/ (+ (- 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 = (2.0 * c) / (-b - t_0);
} else {
tmp = (-b + t_0) / (2.0 * a);
}
return tmp;
}
module fmin_fmax_functions
implicit none
private
public fmax
public fmin
interface fmax
module procedure fmax88
module procedure fmax44
module procedure fmax84
module procedure fmax48
end interface
interface fmin
module procedure fmin88
module procedure fmin44
module procedure fmin84
module procedure fmin48
end interface
contains
real(8) function fmax88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(4) function fmax44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(8) function fmax84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmax48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
end function
real(8) function fmin88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(4) function fmin44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(8) function fmin84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmin48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
end function
end module
real(8) function code(a, b, c)
use fmin_fmax_functions
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 = (2.0d0 * c) / (-b - t_0)
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 = (2.0 * c) / (-b - t_0);
} 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 = (2.0 * c) / (-b - t_0) else: tmp = (-b + t_0) / (2.0 * a) return tmp
function code(a, b, c) t_0 = sqrt(Float64(Float64(b * b) - Float64(Float64(4.0 * a) * c))) tmp = 0.0 if (b >= 0.0) tmp = Float64(Float64(2.0 * c) / Float64(Float64(-b) - t_0)); 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 = (2.0 * c) / (-b - t_0); 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[(N[(4.0 * a), $MachinePrecision] * c), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, If[GreaterEqual[b, 0.0], N[(N[(2.0 * c), $MachinePrecision] / N[((-b) - t$95$0), $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 - \left(4 \cdot a\right) \cdot c}\\
\mathbf{if}\;b \geq 0:\\
\;\;\;\;\frac{2 \cdot c}{\left(-b\right) - t\_0}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-b\right) + t\_0}{2 \cdot a}\\
\end{array}
\end{array}
(FPCore (a b c)
:precision binary64
(let* ((t_0 (sqrt (fma (* -4.0 a) c (* b b)))) (t_1 (/ (- b) a)))
(if (<= b -1.22e+154)
(if (>= b 0.0) t_1 t_1)
(if (<= b 7.5e+129)
(if (>= b 0.0) (/ (* -2.0 c) (+ t_0 b)) (* (/ (- t_0 b) a) 0.5))
(if (>= b 0.0)
(/ (* 2.0 c) (- (- b) b))
(/ (+ (- b) (- b)) (* 2.0 a)))))))
double code(double a, double b, double c) {
double t_0 = sqrt(fma((-4.0 * a), c, (b * b)));
double t_1 = -b / a;
double tmp_1;
if (b <= -1.22e+154) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = t_1;
} else {
tmp_2 = t_1;
}
tmp_1 = tmp_2;
} else if (b <= 7.5e+129) {
double tmp_3;
if (b >= 0.0) {
tmp_3 = (-2.0 * c) / (t_0 + b);
} else {
tmp_3 = ((t_0 - b) / a) * 0.5;
}
tmp_1 = tmp_3;
} else if (b >= 0.0) {
tmp_1 = (2.0 * c) / (-b - b);
} else {
tmp_1 = (-b + -b) / (2.0 * a);
}
return tmp_1;
}
function code(a, b, c) t_0 = sqrt(fma(Float64(-4.0 * a), c, Float64(b * b))) t_1 = Float64(Float64(-b) / a) tmp_1 = 0.0 if (b <= -1.22e+154) tmp_2 = 0.0 if (b >= 0.0) tmp_2 = t_1; else tmp_2 = t_1; end tmp_1 = tmp_2; elseif (b <= 7.5e+129) tmp_3 = 0.0 if (b >= 0.0) tmp_3 = Float64(Float64(-2.0 * c) / Float64(t_0 + b)); else tmp_3 = Float64(Float64(Float64(t_0 - b) / a) * 0.5); end tmp_1 = tmp_3; elseif (b >= 0.0) tmp_1 = Float64(Float64(2.0 * c) / Float64(Float64(-b) - b)); else tmp_1 = Float64(Float64(Float64(-b) + Float64(-b)) / Float64(2.0 * a)); end return tmp_1 end
code[a_, b_, c_] := Block[{t$95$0 = N[Sqrt[N[(N[(-4.0 * a), $MachinePrecision] * c + N[(b * b), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[((-b) / a), $MachinePrecision]}, If[LessEqual[b, -1.22e+154], If[GreaterEqual[b, 0.0], t$95$1, t$95$1], If[LessEqual[b, 7.5e+129], If[GreaterEqual[b, 0.0], N[(N[(-2.0 * c), $MachinePrecision] / N[(t$95$0 + b), $MachinePrecision]), $MachinePrecision], N[(N[(N[(t$95$0 - b), $MachinePrecision] / a), $MachinePrecision] * 0.5), $MachinePrecision]], If[GreaterEqual[b, 0.0], N[(N[(2.0 * c), $MachinePrecision] / N[((-b) - b), $MachinePrecision]), $MachinePrecision], N[(N[((-b) + (-b)), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \sqrt{\mathsf{fma}\left(-4 \cdot a, c, b \cdot b\right)}\\
t_1 := \frac{-b}{a}\\
\mathbf{if}\;b \leq -1.22 \cdot 10^{+154}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;t\_1\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}\\
\mathbf{elif}\;b \leq 7.5 \cdot 10^{+129}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;\frac{-2 \cdot c}{t\_0 + b}\\
\mathbf{else}:\\
\;\;\;\;\frac{t\_0 - b}{a} \cdot 0.5\\
\end{array}\\
\mathbf{elif}\;b \geq 0:\\
\;\;\;\;\frac{2 \cdot c}{\left(-b\right) - b}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-b\right) + \left(-b\right)}{2 \cdot a}\\
\end{array}
\end{array}
if b < -1.22e154Initial program 40.7%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6497.7
Applied rewrites97.7%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6497.7
Applied rewrites97.7%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6497.9
Applied rewrites97.9%
if -1.22e154 < b < 7.4999999999999998e129Initial program 86.3%
Taylor expanded in a around 0
Applied rewrites86.3%
if 7.4999999999999998e129 < b Initial program 46.3%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6446.3
Applied rewrites46.3%
Taylor expanded in a around 0
Applied rewrites96.8%
(FPCore (a b c)
:precision binary64
(let* ((t_0 (/ (- b) a)))
(if (<= b -8.2e-5)
(if (>= b 0.0) t_0 t_0)
(if (<= b -7.4e-286)
(if (>= b 0.0)
(/ (* 2.0 c) (- (- b) (sqrt (* (* -4.0 a) c))))
(/ (+ (- b) (sqrt (* (* a c) -4.0))) (* 2.0 a)))
(if (<= b 7.5e+129)
(if (>= b 0.0)
(/ (* -2.0 c) (+ (sqrt (fma (* -4.0 a) c (* b b))) b))
(fma -0.5 (/ b a) (- (sqrt (* (/ c a) -1.0)))))
(if (>= b 0.0)
(/ (* 2.0 c) (- (- b) b))
(/ (+ (- b) (- b)) (* 2.0 a))))))))
double code(double a, double b, double c) {
double t_0 = -b / a;
double tmp_1;
if (b <= -8.2e-5) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = t_0;
} else {
tmp_2 = t_0;
}
tmp_1 = tmp_2;
} else if (b <= -7.4e-286) {
double tmp_3;
if (b >= 0.0) {
tmp_3 = (2.0 * c) / (-b - sqrt(((-4.0 * a) * c)));
} else {
tmp_3 = (-b + sqrt(((a * c) * -4.0))) / (2.0 * a);
}
tmp_1 = tmp_3;
} else if (b <= 7.5e+129) {
double tmp_4;
if (b >= 0.0) {
tmp_4 = (-2.0 * c) / (sqrt(fma((-4.0 * a), c, (b * b))) + b);
} else {
tmp_4 = fma(-0.5, (b / a), -sqrt(((c / a) * -1.0)));
}
tmp_1 = tmp_4;
} else if (b >= 0.0) {
tmp_1 = (2.0 * c) / (-b - b);
} else {
tmp_1 = (-b + -b) / (2.0 * a);
}
return tmp_1;
}
function code(a, b, c) t_0 = Float64(Float64(-b) / a) tmp_1 = 0.0 if (b <= -8.2e-5) tmp_2 = 0.0 if (b >= 0.0) tmp_2 = t_0; else tmp_2 = t_0; end tmp_1 = tmp_2; elseif (b <= -7.4e-286) tmp_3 = 0.0 if (b >= 0.0) tmp_3 = Float64(Float64(2.0 * c) / Float64(Float64(-b) - sqrt(Float64(Float64(-4.0 * a) * c)))); else tmp_3 = Float64(Float64(Float64(-b) + sqrt(Float64(Float64(a * c) * -4.0))) / Float64(2.0 * a)); end tmp_1 = tmp_3; elseif (b <= 7.5e+129) tmp_4 = 0.0 if (b >= 0.0) tmp_4 = Float64(Float64(-2.0 * c) / Float64(sqrt(fma(Float64(-4.0 * a), c, Float64(b * b))) + b)); else tmp_4 = fma(-0.5, Float64(b / a), Float64(-sqrt(Float64(Float64(c / a) * -1.0)))); end tmp_1 = tmp_4; elseif (b >= 0.0) tmp_1 = Float64(Float64(2.0 * c) / Float64(Float64(-b) - b)); else tmp_1 = Float64(Float64(Float64(-b) + Float64(-b)) / Float64(2.0 * a)); end return tmp_1 end
code[a_, b_, c_] := Block[{t$95$0 = N[((-b) / a), $MachinePrecision]}, If[LessEqual[b, -8.2e-5], If[GreaterEqual[b, 0.0], t$95$0, t$95$0], If[LessEqual[b, -7.4e-286], If[GreaterEqual[b, 0.0], N[(N[(2.0 * c), $MachinePrecision] / N[((-b) - N[Sqrt[N[(N[(-4.0 * a), $MachinePrecision] * c), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[((-b) + N[Sqrt[N[(N[(a * c), $MachinePrecision] * -4.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]], If[LessEqual[b, 7.5e+129], If[GreaterEqual[b, 0.0], N[(N[(-2.0 * c), $MachinePrecision] / N[(N[Sqrt[N[(N[(-4.0 * a), $MachinePrecision] * c + N[(b * b), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] + b), $MachinePrecision]), $MachinePrecision], N[(-0.5 * N[(b / a), $MachinePrecision] + (-N[Sqrt[N[(N[(c / a), $MachinePrecision] * -1.0), $MachinePrecision]], $MachinePrecision])), $MachinePrecision]], If[GreaterEqual[b, 0.0], N[(N[(2.0 * c), $MachinePrecision] / N[((-b) - b), $MachinePrecision]), $MachinePrecision], N[(N[((-b) + (-b)), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{-b}{a}\\
\mathbf{if}\;b \leq -8.2 \cdot 10^{-5}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;t\_0\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}\\
\mathbf{elif}\;b \leq -7.4 \cdot 10^{-286}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;\frac{2 \cdot c}{\left(-b\right) - \sqrt{\left(-4 \cdot a\right) \cdot c}}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-b\right) + \sqrt{\left(a \cdot c\right) \cdot -4}}{2 \cdot a}\\
\end{array}\\
\mathbf{elif}\;b \leq 7.5 \cdot 10^{+129}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;\frac{-2 \cdot c}{\sqrt{\mathsf{fma}\left(-4 \cdot a, c, b \cdot b\right)} + b}\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-0.5, \frac{b}{a}, -\sqrt{\frac{c}{a} \cdot -1}\right)\\
\end{array}\\
\mathbf{elif}\;b \geq 0:\\
\;\;\;\;\frac{2 \cdot c}{\left(-b\right) - b}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-b\right) + \left(-b\right)}{2 \cdot a}\\
\end{array}
\end{array}
if b < -8.20000000000000009e-5Initial program 64.8%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6490.5
Applied rewrites90.5%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6490.5
Applied rewrites90.5%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6490.6
Applied rewrites90.6%
if -8.20000000000000009e-5 < b < -7.3999999999999998e-286Initial program 81.6%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6431.0
Applied rewrites31.0%
Taylor expanded in a around inf
associate-*r*N/A
lower-*.f64N/A
lift-*.f6431.0
Applied rewrites31.0%
Taylor expanded in a around inf
pow2N/A
associate-*r*N/A
fp-cancel-sub-sign-invN/A
metadata-evalN/A
+-commutativeN/A
associate-*r*N/A
pow2N/A
sqrt-unprodN/A
lower-sqrt.f64N/A
lower-*.f64N/A
lower-*.f6460.1
Applied rewrites60.1%
if -7.3999999999999998e-286 < b < 7.4999999999999998e129Initial program 86.2%
Taylor expanded in a around 0
Applied rewrites86.2%
Taylor expanded in a around -inf
lower-*.f64N/A
sqrt-prodN/A
lift-/.f64N/A
lift-*.f64N/A
lift-sqrt.f6484.2
Applied rewrites84.2%
Taylor expanded in a around -inf
+-commutativeN/A
lower-fma.f64N/A
lower-/.f64N/A
mul-1-negN/A
lower-neg.f64N/A
sqrt-prodN/A
lift-/.f64N/A
lift-*.f64N/A
lift-sqrt.f6484.2
Applied rewrites84.2%
if 7.4999999999999998e129 < b Initial program 46.3%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6446.3
Applied rewrites46.3%
Taylor expanded in a around 0
Applied rewrites96.8%
(FPCore (a b c)
:precision binary64
(let* ((t_0 (/ (+ (- b) (- b)) (* 2.0 a))) (t_1 (/ (- b) a)))
(if (<= b -8.2e-5)
(if (>= b 0.0) t_1 t_1)
(if (<= b -1e-310)
(if (>= b 0.0) t_1 (/ (sqrt (* (* a c) -4.0)) (* 2.0 a)))
(if (<= b 6.8e-62)
(if (>= b 0.0) (/ (+ c c) (- (- b) (sqrt (* (* -4.0 a) c)))) t_0)
(if (>= b 0.0) (/ (+ c c) (* 2.0 (- (* a (/ c b)) b))) t_0))))))
double code(double a, double b, double c) {
double t_0 = (-b + -b) / (2.0 * a);
double t_1 = -b / a;
double tmp_1;
if (b <= -8.2e-5) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = t_1;
} else {
tmp_2 = t_1;
}
tmp_1 = tmp_2;
} else if (b <= -1e-310) {
double tmp_3;
if (b >= 0.0) {
tmp_3 = t_1;
} else {
tmp_3 = sqrt(((a * c) * -4.0)) / (2.0 * a);
}
tmp_1 = tmp_3;
} else if (b <= 6.8e-62) {
double tmp_4;
if (b >= 0.0) {
tmp_4 = (c + c) / (-b - sqrt(((-4.0 * a) * c)));
} else {
tmp_4 = t_0;
}
tmp_1 = tmp_4;
} else if (b >= 0.0) {
tmp_1 = (c + c) / (2.0 * ((a * (c / b)) - b));
} else {
tmp_1 = t_0;
}
return tmp_1;
}
module fmin_fmax_functions
implicit none
private
public fmax
public fmin
interface fmax
module procedure fmax88
module procedure fmax44
module procedure fmax84
module procedure fmax48
end interface
interface fmin
module procedure fmin88
module procedure fmin44
module procedure fmin84
module procedure fmin48
end interface
contains
real(8) function fmax88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(4) function fmax44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(8) function fmax84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmax48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
end function
real(8) function fmin88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(4) function fmin44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(8) function fmin84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmin48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
end function
end module
real(8) function code(a, b, c)
use fmin_fmax_functions
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: t_0
real(8) :: t_1
real(8) :: tmp
real(8) :: tmp_1
real(8) :: tmp_2
real(8) :: tmp_3
real(8) :: tmp_4
t_0 = (-b + -b) / (2.0d0 * a)
t_1 = -b / a
if (b <= (-8.2d-5)) then
if (b >= 0.0d0) then
tmp_2 = t_1
else
tmp_2 = t_1
end if
tmp_1 = tmp_2
else if (b <= (-1d-310)) then
if (b >= 0.0d0) then
tmp_3 = t_1
else
tmp_3 = sqrt(((a * c) * (-4.0d0))) / (2.0d0 * a)
end if
tmp_1 = tmp_3
else if (b <= 6.8d-62) then
if (b >= 0.0d0) then
tmp_4 = (c + c) / (-b - sqrt((((-4.0d0) * a) * c)))
else
tmp_4 = t_0
end if
tmp_1 = tmp_4
else if (b >= 0.0d0) then
tmp_1 = (c + c) / (2.0d0 * ((a * (c / b)) - b))
else
tmp_1 = t_0
end if
code = tmp_1
end function
public static double code(double a, double b, double c) {
double t_0 = (-b + -b) / (2.0 * a);
double t_1 = -b / a;
double tmp_1;
if (b <= -8.2e-5) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = t_1;
} else {
tmp_2 = t_1;
}
tmp_1 = tmp_2;
} else if (b <= -1e-310) {
double tmp_3;
if (b >= 0.0) {
tmp_3 = t_1;
} else {
tmp_3 = Math.sqrt(((a * c) * -4.0)) / (2.0 * a);
}
tmp_1 = tmp_3;
} else if (b <= 6.8e-62) {
double tmp_4;
if (b >= 0.0) {
tmp_4 = (c + c) / (-b - Math.sqrt(((-4.0 * a) * c)));
} else {
tmp_4 = t_0;
}
tmp_1 = tmp_4;
} else if (b >= 0.0) {
tmp_1 = (c + c) / (2.0 * ((a * (c / b)) - b));
} else {
tmp_1 = t_0;
}
return tmp_1;
}
def code(a, b, c): t_0 = (-b + -b) / (2.0 * a) t_1 = -b / a tmp_1 = 0 if b <= -8.2e-5: tmp_2 = 0 if b >= 0.0: tmp_2 = t_1 else: tmp_2 = t_1 tmp_1 = tmp_2 elif b <= -1e-310: tmp_3 = 0 if b >= 0.0: tmp_3 = t_1 else: tmp_3 = math.sqrt(((a * c) * -4.0)) / (2.0 * a) tmp_1 = tmp_3 elif b <= 6.8e-62: tmp_4 = 0 if b >= 0.0: tmp_4 = (c + c) / (-b - math.sqrt(((-4.0 * a) * c))) else: tmp_4 = t_0 tmp_1 = tmp_4 elif b >= 0.0: tmp_1 = (c + c) / (2.0 * ((a * (c / b)) - b)) else: tmp_1 = t_0 return tmp_1
function code(a, b, c) t_0 = Float64(Float64(Float64(-b) + Float64(-b)) / Float64(2.0 * a)) t_1 = Float64(Float64(-b) / a) tmp_1 = 0.0 if (b <= -8.2e-5) tmp_2 = 0.0 if (b >= 0.0) tmp_2 = t_1; else tmp_2 = t_1; end tmp_1 = tmp_2; elseif (b <= -1e-310) tmp_3 = 0.0 if (b >= 0.0) tmp_3 = t_1; else tmp_3 = Float64(sqrt(Float64(Float64(a * c) * -4.0)) / Float64(2.0 * a)); end tmp_1 = tmp_3; elseif (b <= 6.8e-62) tmp_4 = 0.0 if (b >= 0.0) tmp_4 = Float64(Float64(c + c) / Float64(Float64(-b) - sqrt(Float64(Float64(-4.0 * a) * c)))); else tmp_4 = t_0; end tmp_1 = tmp_4; elseif (b >= 0.0) tmp_1 = Float64(Float64(c + c) / Float64(2.0 * Float64(Float64(a * Float64(c / b)) - b))); else tmp_1 = t_0; end return tmp_1 end
function tmp_6 = code(a, b, c) t_0 = (-b + -b) / (2.0 * a); t_1 = -b / a; tmp_2 = 0.0; if (b <= -8.2e-5) tmp_3 = 0.0; if (b >= 0.0) tmp_3 = t_1; else tmp_3 = t_1; end tmp_2 = tmp_3; elseif (b <= -1e-310) tmp_4 = 0.0; if (b >= 0.0) tmp_4 = t_1; else tmp_4 = sqrt(((a * c) * -4.0)) / (2.0 * a); end tmp_2 = tmp_4; elseif (b <= 6.8e-62) tmp_5 = 0.0; if (b >= 0.0) tmp_5 = (c + c) / (-b - sqrt(((-4.0 * a) * c))); else tmp_5 = t_0; end tmp_2 = tmp_5; elseif (b >= 0.0) tmp_2 = (c + c) / (2.0 * ((a * (c / b)) - b)); else tmp_2 = t_0; end tmp_6 = tmp_2; end
code[a_, b_, c_] := Block[{t$95$0 = N[(N[((-b) + (-b)), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[((-b) / a), $MachinePrecision]}, If[LessEqual[b, -8.2e-5], If[GreaterEqual[b, 0.0], t$95$1, t$95$1], If[LessEqual[b, -1e-310], If[GreaterEqual[b, 0.0], t$95$1, N[(N[Sqrt[N[(N[(a * c), $MachinePrecision] * -4.0), $MachinePrecision]], $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]], If[LessEqual[b, 6.8e-62], If[GreaterEqual[b, 0.0], N[(N[(c + c), $MachinePrecision] / N[((-b) - N[Sqrt[N[(N[(-4.0 * a), $MachinePrecision] * c), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$0], If[GreaterEqual[b, 0.0], N[(N[(c + c), $MachinePrecision] / N[(2.0 * N[(N[(a * N[(c / b), $MachinePrecision]), $MachinePrecision] - b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$0]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{\left(-b\right) + \left(-b\right)}{2 \cdot a}\\
t_1 := \frac{-b}{a}\\
\mathbf{if}\;b \leq -8.2 \cdot 10^{-5}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;t\_1\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}\\
\mathbf{elif}\;b \leq -1 \cdot 10^{-310}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;t\_1\\
\mathbf{else}:\\
\;\;\;\;\frac{\sqrt{\left(a \cdot c\right) \cdot -4}}{2 \cdot a}\\
\end{array}\\
\mathbf{elif}\;b \leq 6.8 \cdot 10^{-62}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;\frac{c + c}{\left(-b\right) - \sqrt{\left(-4 \cdot a\right) \cdot c}}\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}\\
\mathbf{elif}\;b \geq 0:\\
\;\;\;\;\frac{c + c}{2 \cdot \left(a \cdot \frac{c}{b} - b\right)}\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
\end{array}
if b < -8.20000000000000009e-5Initial program 64.8%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6490.5
Applied rewrites90.5%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6490.5
Applied rewrites90.5%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6490.6
Applied rewrites90.6%
if -8.20000000000000009e-5 < b < -9.999999999999969e-311Initial program 81.5%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6429.4
Applied rewrites29.4%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6429.4
Applied rewrites29.4%
Taylor expanded in a around inf
sqrt-unprodN/A
lower-sqrt.f64N/A
lower-*.f64N/A
lower-*.f6458.2
Applied rewrites58.2%
if -9.999999999999969e-311 < b < 6.79999999999999975e-62Initial program 80.0%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6480.0
Applied rewrites80.0%
Taylor expanded in a around inf
associate-*r*N/A
lower-*.f64N/A
lift-*.f6466.5
Applied rewrites66.5%
lift-*.f64N/A
count-2-revN/A
lower-+.f6466.5
Applied rewrites66.5%
if 6.79999999999999975e-62 < b Initial program 67.0%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6467.0
Applied rewrites67.0%
Taylor expanded in a around 0
distribute-lft-out--N/A
lower-*.f64N/A
lower--.f64N/A
associate-*r/N/A
lift-/.f64N/A
lift-*.f6488.1
Applied rewrites88.1%
lift-*.f64N/A
count-2-revN/A
lower-+.f6488.1
Applied rewrites88.1%
(FPCore (a b c)
:precision binary64
(let* ((t_0 (sqrt (* (* a c) -4.0))) (t_1 (/ (- b) a)))
(if (<= b -8.2e-5)
(if (>= b 0.0) t_1 t_1)
(if (<= b -7.4e-286)
(if (>= b 0.0) t_1 (/ t_0 (* 2.0 a)))
(if (<= b 1.26e-70)
(if (>= b 0.0)
(/ (* -2.0 c) t_0)
(* (* -2.0 (sqrt (* (/ c a) -1.0))) 0.5))
(if (>= b 0.0)
(/ (+ c c) (* 2.0 (- (* a (/ c b)) b)))
(/ (+ (- b) (- b)) (* 2.0 a))))))))
double code(double a, double b, double c) {
double t_0 = sqrt(((a * c) * -4.0));
double t_1 = -b / a;
double tmp_1;
if (b <= -8.2e-5) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = t_1;
} else {
tmp_2 = t_1;
}
tmp_1 = tmp_2;
} else if (b <= -7.4e-286) {
double tmp_3;
if (b >= 0.0) {
tmp_3 = t_1;
} else {
tmp_3 = t_0 / (2.0 * a);
}
tmp_1 = tmp_3;
} else if (b <= 1.26e-70) {
double tmp_4;
if (b >= 0.0) {
tmp_4 = (-2.0 * c) / t_0;
} else {
tmp_4 = (-2.0 * sqrt(((c / a) * -1.0))) * 0.5;
}
tmp_1 = tmp_4;
} else if (b >= 0.0) {
tmp_1 = (c + c) / (2.0 * ((a * (c / b)) - b));
} else {
tmp_1 = (-b + -b) / (2.0 * a);
}
return tmp_1;
}
module fmin_fmax_functions
implicit none
private
public fmax
public fmin
interface fmax
module procedure fmax88
module procedure fmax44
module procedure fmax84
module procedure fmax48
end interface
interface fmin
module procedure fmin88
module procedure fmin44
module procedure fmin84
module procedure fmin48
end interface
contains
real(8) function fmax88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(4) function fmax44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(8) function fmax84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmax48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
end function
real(8) function fmin88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(4) function fmin44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(8) function fmin84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmin48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
end function
end module
real(8) function code(a, b, c)
use fmin_fmax_functions
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: t_0
real(8) :: t_1
real(8) :: tmp
real(8) :: tmp_1
real(8) :: tmp_2
real(8) :: tmp_3
real(8) :: tmp_4
t_0 = sqrt(((a * c) * (-4.0d0)))
t_1 = -b / a
if (b <= (-8.2d-5)) then
if (b >= 0.0d0) then
tmp_2 = t_1
else
tmp_2 = t_1
end if
tmp_1 = tmp_2
else if (b <= (-7.4d-286)) then
if (b >= 0.0d0) then
tmp_3 = t_1
else
tmp_3 = t_0 / (2.0d0 * a)
end if
tmp_1 = tmp_3
else if (b <= 1.26d-70) then
if (b >= 0.0d0) then
tmp_4 = ((-2.0d0) * c) / t_0
else
tmp_4 = ((-2.0d0) * sqrt(((c / a) * (-1.0d0)))) * 0.5d0
end if
tmp_1 = tmp_4
else if (b >= 0.0d0) then
tmp_1 = (c + c) / (2.0d0 * ((a * (c / b)) - b))
else
tmp_1 = (-b + -b) / (2.0d0 * a)
end if
code = tmp_1
end function
public static double code(double a, double b, double c) {
double t_0 = Math.sqrt(((a * c) * -4.0));
double t_1 = -b / a;
double tmp_1;
if (b <= -8.2e-5) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = t_1;
} else {
tmp_2 = t_1;
}
tmp_1 = tmp_2;
} else if (b <= -7.4e-286) {
double tmp_3;
if (b >= 0.0) {
tmp_3 = t_1;
} else {
tmp_3 = t_0 / (2.0 * a);
}
tmp_1 = tmp_3;
} else if (b <= 1.26e-70) {
double tmp_4;
if (b >= 0.0) {
tmp_4 = (-2.0 * c) / t_0;
} else {
tmp_4 = (-2.0 * Math.sqrt(((c / a) * -1.0))) * 0.5;
}
tmp_1 = tmp_4;
} else if (b >= 0.0) {
tmp_1 = (c + c) / (2.0 * ((a * (c / b)) - b));
} else {
tmp_1 = (-b + -b) / (2.0 * a);
}
return tmp_1;
}
def code(a, b, c): t_0 = math.sqrt(((a * c) * -4.0)) t_1 = -b / a tmp_1 = 0 if b <= -8.2e-5: tmp_2 = 0 if b >= 0.0: tmp_2 = t_1 else: tmp_2 = t_1 tmp_1 = tmp_2 elif b <= -7.4e-286: tmp_3 = 0 if b >= 0.0: tmp_3 = t_1 else: tmp_3 = t_0 / (2.0 * a) tmp_1 = tmp_3 elif b <= 1.26e-70: tmp_4 = 0 if b >= 0.0: tmp_4 = (-2.0 * c) / t_0 else: tmp_4 = (-2.0 * math.sqrt(((c / a) * -1.0))) * 0.5 tmp_1 = tmp_4 elif b >= 0.0: tmp_1 = (c + c) / (2.0 * ((a * (c / b)) - b)) else: tmp_1 = (-b + -b) / (2.0 * a) return tmp_1
function code(a, b, c) t_0 = sqrt(Float64(Float64(a * c) * -4.0)) t_1 = Float64(Float64(-b) / a) tmp_1 = 0.0 if (b <= -8.2e-5) tmp_2 = 0.0 if (b >= 0.0) tmp_2 = t_1; else tmp_2 = t_1; end tmp_1 = tmp_2; elseif (b <= -7.4e-286) tmp_3 = 0.0 if (b >= 0.0) tmp_3 = t_1; else tmp_3 = Float64(t_0 / Float64(2.0 * a)); end tmp_1 = tmp_3; elseif (b <= 1.26e-70) tmp_4 = 0.0 if (b >= 0.0) tmp_4 = Float64(Float64(-2.0 * c) / t_0); else tmp_4 = Float64(Float64(-2.0 * sqrt(Float64(Float64(c / a) * -1.0))) * 0.5); end tmp_1 = tmp_4; elseif (b >= 0.0) tmp_1 = Float64(Float64(c + c) / Float64(2.0 * Float64(Float64(a * Float64(c / b)) - b))); else tmp_1 = Float64(Float64(Float64(-b) + Float64(-b)) / Float64(2.0 * a)); end return tmp_1 end
function tmp_6 = code(a, b, c) t_0 = sqrt(((a * c) * -4.0)); t_1 = -b / a; tmp_2 = 0.0; if (b <= -8.2e-5) tmp_3 = 0.0; if (b >= 0.0) tmp_3 = t_1; else tmp_3 = t_1; end tmp_2 = tmp_3; elseif (b <= -7.4e-286) tmp_4 = 0.0; if (b >= 0.0) tmp_4 = t_1; else tmp_4 = t_0 / (2.0 * a); end tmp_2 = tmp_4; elseif (b <= 1.26e-70) tmp_5 = 0.0; if (b >= 0.0) tmp_5 = (-2.0 * c) / t_0; else tmp_5 = (-2.0 * sqrt(((c / a) * -1.0))) * 0.5; end tmp_2 = tmp_5; elseif (b >= 0.0) tmp_2 = (c + c) / (2.0 * ((a * (c / b)) - b)); else tmp_2 = (-b + -b) / (2.0 * a); end tmp_6 = tmp_2; end
code[a_, b_, c_] := Block[{t$95$0 = N[Sqrt[N[(N[(a * c), $MachinePrecision] * -4.0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[((-b) / a), $MachinePrecision]}, If[LessEqual[b, -8.2e-5], If[GreaterEqual[b, 0.0], t$95$1, t$95$1], If[LessEqual[b, -7.4e-286], If[GreaterEqual[b, 0.0], t$95$1, N[(t$95$0 / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]], If[LessEqual[b, 1.26e-70], If[GreaterEqual[b, 0.0], N[(N[(-2.0 * c), $MachinePrecision] / t$95$0), $MachinePrecision], N[(N[(-2.0 * N[Sqrt[N[(N[(c / a), $MachinePrecision] * -1.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * 0.5), $MachinePrecision]], If[GreaterEqual[b, 0.0], N[(N[(c + c), $MachinePrecision] / N[(2.0 * N[(N[(a * N[(c / b), $MachinePrecision]), $MachinePrecision] - b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[((-b) + (-b)), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \sqrt{\left(a \cdot c\right) \cdot -4}\\
t_1 := \frac{-b}{a}\\
\mathbf{if}\;b \leq -8.2 \cdot 10^{-5}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;t\_1\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}\\
\mathbf{elif}\;b \leq -7.4 \cdot 10^{-286}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;t\_1\\
\mathbf{else}:\\
\;\;\;\;\frac{t\_0}{2 \cdot a}\\
\end{array}\\
\mathbf{elif}\;b \leq 1.26 \cdot 10^{-70}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;\frac{-2 \cdot c}{t\_0}\\
\mathbf{else}:\\
\;\;\;\;\left(-2 \cdot \sqrt{\frac{c}{a} \cdot -1}\right) \cdot 0.5\\
\end{array}\\
\mathbf{elif}\;b \geq 0:\\
\;\;\;\;\frac{c + c}{2 \cdot \left(a \cdot \frac{c}{b} - b\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-b\right) + \left(-b\right)}{2 \cdot a}\\
\end{array}
\end{array}
if b < -8.20000000000000009e-5Initial program 64.8%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6490.5
Applied rewrites90.5%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6490.5
Applied rewrites90.5%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6490.6
Applied rewrites90.6%
if -8.20000000000000009e-5 < b < -7.3999999999999998e-286Initial program 81.6%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6431.0
Applied rewrites31.0%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6431.0
Applied rewrites31.0%
Taylor expanded in a around inf
sqrt-unprodN/A
lower-sqrt.f64N/A
lower-*.f64N/A
lower-*.f6456.7
Applied rewrites56.7%
if -7.3999999999999998e-286 < b < 1.2600000000000001e-70Initial program 79.4%
Taylor expanded in a around 0
Applied rewrites79.4%
Taylor expanded in a around -inf
lower-*.f64N/A
sqrt-prodN/A
lift-/.f64N/A
lift-*.f64N/A
lift-sqrt.f6475.2
Applied rewrites75.2%
Taylor expanded in a around inf
sqrt-unprodN/A
lower-sqrt.f64N/A
lower-*.f64N/A
lower-*.f6461.7
Applied rewrites61.7%
if 1.2600000000000001e-70 < b Initial program 67.5%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6467.5
Applied rewrites67.5%
Taylor expanded in a around 0
distribute-lft-out--N/A
lower-*.f64N/A
lower--.f64N/A
associate-*r/N/A
lift-/.f64N/A
lift-*.f6487.5
Applied rewrites87.5%
lift-*.f64N/A
count-2-revN/A
lower-+.f6487.5
Applied rewrites87.5%
(FPCore (a b c)
:precision binary64
(let* ((t_0 (sqrt (* (* a c) -4.0))) (t_1 (/ (- b) a)))
(if (<= b -8.2e-5)
(if (>= b 0.0) t_1 t_1)
(if (<= b -7.4e-286)
(if (>= b 0.0) t_1 (/ t_0 (* 2.0 a)))
(if (<= b 4.4e-54)
(if (>= b 0.0)
(/ (* -2.0 c) t_0)
(* (* -2.0 (sqrt (* (/ c a) -1.0))) 0.5))
(if (>= b 0.0)
(/ (* 2.0 c) (- (- b) b))
(/ (+ (- b) (- b)) (* 2.0 a))))))))
double code(double a, double b, double c) {
double t_0 = sqrt(((a * c) * -4.0));
double t_1 = -b / a;
double tmp_1;
if (b <= -8.2e-5) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = t_1;
} else {
tmp_2 = t_1;
}
tmp_1 = tmp_2;
} else if (b <= -7.4e-286) {
double tmp_3;
if (b >= 0.0) {
tmp_3 = t_1;
} else {
tmp_3 = t_0 / (2.0 * a);
}
tmp_1 = tmp_3;
} else if (b <= 4.4e-54) {
double tmp_4;
if (b >= 0.0) {
tmp_4 = (-2.0 * c) / t_0;
} else {
tmp_4 = (-2.0 * sqrt(((c / a) * -1.0))) * 0.5;
}
tmp_1 = tmp_4;
} else if (b >= 0.0) {
tmp_1 = (2.0 * c) / (-b - b);
} else {
tmp_1 = (-b + -b) / (2.0 * a);
}
return tmp_1;
}
module fmin_fmax_functions
implicit none
private
public fmax
public fmin
interface fmax
module procedure fmax88
module procedure fmax44
module procedure fmax84
module procedure fmax48
end interface
interface fmin
module procedure fmin88
module procedure fmin44
module procedure fmin84
module procedure fmin48
end interface
contains
real(8) function fmax88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(4) function fmax44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(8) function fmax84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmax48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
end function
real(8) function fmin88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(4) function fmin44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(8) function fmin84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmin48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
end function
end module
real(8) function code(a, b, c)
use fmin_fmax_functions
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: t_0
real(8) :: t_1
real(8) :: tmp
real(8) :: tmp_1
real(8) :: tmp_2
real(8) :: tmp_3
real(8) :: tmp_4
t_0 = sqrt(((a * c) * (-4.0d0)))
t_1 = -b / a
if (b <= (-8.2d-5)) then
if (b >= 0.0d0) then
tmp_2 = t_1
else
tmp_2 = t_1
end if
tmp_1 = tmp_2
else if (b <= (-7.4d-286)) then
if (b >= 0.0d0) then
tmp_3 = t_1
else
tmp_3 = t_0 / (2.0d0 * a)
end if
tmp_1 = tmp_3
else if (b <= 4.4d-54) then
if (b >= 0.0d0) then
tmp_4 = ((-2.0d0) * c) / t_0
else
tmp_4 = ((-2.0d0) * sqrt(((c / a) * (-1.0d0)))) * 0.5d0
end if
tmp_1 = tmp_4
else if (b >= 0.0d0) then
tmp_1 = (2.0d0 * c) / (-b - b)
else
tmp_1 = (-b + -b) / (2.0d0 * a)
end if
code = tmp_1
end function
public static double code(double a, double b, double c) {
double t_0 = Math.sqrt(((a * c) * -4.0));
double t_1 = -b / a;
double tmp_1;
if (b <= -8.2e-5) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = t_1;
} else {
tmp_2 = t_1;
}
tmp_1 = tmp_2;
} else if (b <= -7.4e-286) {
double tmp_3;
if (b >= 0.0) {
tmp_3 = t_1;
} else {
tmp_3 = t_0 / (2.0 * a);
}
tmp_1 = tmp_3;
} else if (b <= 4.4e-54) {
double tmp_4;
if (b >= 0.0) {
tmp_4 = (-2.0 * c) / t_0;
} else {
tmp_4 = (-2.0 * Math.sqrt(((c / a) * -1.0))) * 0.5;
}
tmp_1 = tmp_4;
} else if (b >= 0.0) {
tmp_1 = (2.0 * c) / (-b - b);
} else {
tmp_1 = (-b + -b) / (2.0 * a);
}
return tmp_1;
}
def code(a, b, c): t_0 = math.sqrt(((a * c) * -4.0)) t_1 = -b / a tmp_1 = 0 if b <= -8.2e-5: tmp_2 = 0 if b >= 0.0: tmp_2 = t_1 else: tmp_2 = t_1 tmp_1 = tmp_2 elif b <= -7.4e-286: tmp_3 = 0 if b >= 0.0: tmp_3 = t_1 else: tmp_3 = t_0 / (2.0 * a) tmp_1 = tmp_3 elif b <= 4.4e-54: tmp_4 = 0 if b >= 0.0: tmp_4 = (-2.0 * c) / t_0 else: tmp_4 = (-2.0 * math.sqrt(((c / a) * -1.0))) * 0.5 tmp_1 = tmp_4 elif b >= 0.0: tmp_1 = (2.0 * c) / (-b - b) else: tmp_1 = (-b + -b) / (2.0 * a) return tmp_1
function code(a, b, c) t_0 = sqrt(Float64(Float64(a * c) * -4.0)) t_1 = Float64(Float64(-b) / a) tmp_1 = 0.0 if (b <= -8.2e-5) tmp_2 = 0.0 if (b >= 0.0) tmp_2 = t_1; else tmp_2 = t_1; end tmp_1 = tmp_2; elseif (b <= -7.4e-286) tmp_3 = 0.0 if (b >= 0.0) tmp_3 = t_1; else tmp_3 = Float64(t_0 / Float64(2.0 * a)); end tmp_1 = tmp_3; elseif (b <= 4.4e-54) tmp_4 = 0.0 if (b >= 0.0) tmp_4 = Float64(Float64(-2.0 * c) / t_0); else tmp_4 = Float64(Float64(-2.0 * sqrt(Float64(Float64(c / a) * -1.0))) * 0.5); end tmp_1 = tmp_4; elseif (b >= 0.0) tmp_1 = Float64(Float64(2.0 * c) / Float64(Float64(-b) - b)); else tmp_1 = Float64(Float64(Float64(-b) + Float64(-b)) / Float64(2.0 * a)); end return tmp_1 end
function tmp_6 = code(a, b, c) t_0 = sqrt(((a * c) * -4.0)); t_1 = -b / a; tmp_2 = 0.0; if (b <= -8.2e-5) tmp_3 = 0.0; if (b >= 0.0) tmp_3 = t_1; else tmp_3 = t_1; end tmp_2 = tmp_3; elseif (b <= -7.4e-286) tmp_4 = 0.0; if (b >= 0.0) tmp_4 = t_1; else tmp_4 = t_0 / (2.0 * a); end tmp_2 = tmp_4; elseif (b <= 4.4e-54) tmp_5 = 0.0; if (b >= 0.0) tmp_5 = (-2.0 * c) / t_0; else tmp_5 = (-2.0 * sqrt(((c / a) * -1.0))) * 0.5; end tmp_2 = tmp_5; elseif (b >= 0.0) tmp_2 = (2.0 * c) / (-b - b); else tmp_2 = (-b + -b) / (2.0 * a); end tmp_6 = tmp_2; end
code[a_, b_, c_] := Block[{t$95$0 = N[Sqrt[N[(N[(a * c), $MachinePrecision] * -4.0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[((-b) / a), $MachinePrecision]}, If[LessEqual[b, -8.2e-5], If[GreaterEqual[b, 0.0], t$95$1, t$95$1], If[LessEqual[b, -7.4e-286], If[GreaterEqual[b, 0.0], t$95$1, N[(t$95$0 / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]], If[LessEqual[b, 4.4e-54], If[GreaterEqual[b, 0.0], N[(N[(-2.0 * c), $MachinePrecision] / t$95$0), $MachinePrecision], N[(N[(-2.0 * N[Sqrt[N[(N[(c / a), $MachinePrecision] * -1.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * 0.5), $MachinePrecision]], If[GreaterEqual[b, 0.0], N[(N[(2.0 * c), $MachinePrecision] / N[((-b) - b), $MachinePrecision]), $MachinePrecision], N[(N[((-b) + (-b)), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \sqrt{\left(a \cdot c\right) \cdot -4}\\
t_1 := \frac{-b}{a}\\
\mathbf{if}\;b \leq -8.2 \cdot 10^{-5}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;t\_1\\
\mathbf{else}:\\
\;\;\;\;t\_1\\
\end{array}\\
\mathbf{elif}\;b \leq -7.4 \cdot 10^{-286}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;t\_1\\
\mathbf{else}:\\
\;\;\;\;\frac{t\_0}{2 \cdot a}\\
\end{array}\\
\mathbf{elif}\;b \leq 4.4 \cdot 10^{-54}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;\frac{-2 \cdot c}{t\_0}\\
\mathbf{else}:\\
\;\;\;\;\left(-2 \cdot \sqrt{\frac{c}{a} \cdot -1}\right) \cdot 0.5\\
\end{array}\\
\mathbf{elif}\;b \geq 0:\\
\;\;\;\;\frac{2 \cdot c}{\left(-b\right) - b}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-b\right) + \left(-b\right)}{2 \cdot a}\\
\end{array}
\end{array}
if b < -8.20000000000000009e-5Initial program 64.8%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6490.5
Applied rewrites90.5%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6490.5
Applied rewrites90.5%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6490.6
Applied rewrites90.6%
if -8.20000000000000009e-5 < b < -7.3999999999999998e-286Initial program 81.6%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6431.0
Applied rewrites31.0%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6431.0
Applied rewrites31.0%
Taylor expanded in a around inf
sqrt-unprodN/A
lower-sqrt.f64N/A
lower-*.f64N/A
lower-*.f6456.7
Applied rewrites56.7%
if -7.3999999999999998e-286 < b < 4.3999999999999999e-54Initial program 80.3%
Taylor expanded in a around 0
Applied rewrites80.3%
Taylor expanded in a around -inf
lower-*.f64N/A
sqrt-prodN/A
lift-/.f64N/A
lift-*.f64N/A
lift-sqrt.f6476.4
Applied rewrites76.4%
Taylor expanded in a around inf
sqrt-unprodN/A
lower-sqrt.f64N/A
lower-*.f64N/A
lower-*.f6460.0
Applied rewrites60.0%
if 4.3999999999999999e-54 < b Initial program 66.6%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6466.6
Applied rewrites66.6%
Taylor expanded in a around 0
Applied rewrites88.5%
(FPCore (a b c)
:precision binary64
(let* ((t_0 (/ (- b) a)))
(if (<= b -6.5e-147)
(if (>= b 0.0) t_0 t_0)
(if (<= b -9.8e-276)
(if (>= b 0.0) t_0 (* 0.5 (sqrt (/ (* -4.0 c) a))))
(if (<= b 4.4e-54)
(if (>= b 0.0)
(/ (* -2.0 c) (sqrt (* (* a c) -4.0)))
(* (* -2.0 (sqrt (* (/ c a) -1.0))) 0.5))
(if (>= b 0.0)
(/ (* 2.0 c) (- (- b) b))
(/ (+ (- b) (- b)) (* 2.0 a))))))))
double code(double a, double b, double c) {
double t_0 = -b / a;
double tmp_1;
if (b <= -6.5e-147) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = t_0;
} else {
tmp_2 = t_0;
}
tmp_1 = tmp_2;
} else if (b <= -9.8e-276) {
double tmp_3;
if (b >= 0.0) {
tmp_3 = t_0;
} else {
tmp_3 = 0.5 * sqrt(((-4.0 * c) / a));
}
tmp_1 = tmp_3;
} else if (b <= 4.4e-54) {
double tmp_4;
if (b >= 0.0) {
tmp_4 = (-2.0 * c) / sqrt(((a * c) * -4.0));
} else {
tmp_4 = (-2.0 * sqrt(((c / a) * -1.0))) * 0.5;
}
tmp_1 = tmp_4;
} else if (b >= 0.0) {
tmp_1 = (2.0 * c) / (-b - b);
} else {
tmp_1 = (-b + -b) / (2.0 * a);
}
return tmp_1;
}
module fmin_fmax_functions
implicit none
private
public fmax
public fmin
interface fmax
module procedure fmax88
module procedure fmax44
module procedure fmax84
module procedure fmax48
end interface
interface fmin
module procedure fmin88
module procedure fmin44
module procedure fmin84
module procedure fmin48
end interface
contains
real(8) function fmax88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(4) function fmax44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(8) function fmax84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmax48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
end function
real(8) function fmin88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(4) function fmin44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(8) function fmin84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmin48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
end function
end module
real(8) function code(a, b, c)
use fmin_fmax_functions
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: t_0
real(8) :: tmp
real(8) :: tmp_1
real(8) :: tmp_2
real(8) :: tmp_3
real(8) :: tmp_4
t_0 = -b / a
if (b <= (-6.5d-147)) then
if (b >= 0.0d0) then
tmp_2 = t_0
else
tmp_2 = t_0
end if
tmp_1 = tmp_2
else if (b <= (-9.8d-276)) then
if (b >= 0.0d0) then
tmp_3 = t_0
else
tmp_3 = 0.5d0 * sqrt((((-4.0d0) * c) / a))
end if
tmp_1 = tmp_3
else if (b <= 4.4d-54) then
if (b >= 0.0d0) then
tmp_4 = ((-2.0d0) * c) / sqrt(((a * c) * (-4.0d0)))
else
tmp_4 = ((-2.0d0) * sqrt(((c / a) * (-1.0d0)))) * 0.5d0
end if
tmp_1 = tmp_4
else if (b >= 0.0d0) then
tmp_1 = (2.0d0 * c) / (-b - b)
else
tmp_1 = (-b + -b) / (2.0d0 * a)
end if
code = tmp_1
end function
public static double code(double a, double b, double c) {
double t_0 = -b / a;
double tmp_1;
if (b <= -6.5e-147) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = t_0;
} else {
tmp_2 = t_0;
}
tmp_1 = tmp_2;
} else if (b <= -9.8e-276) {
double tmp_3;
if (b >= 0.0) {
tmp_3 = t_0;
} else {
tmp_3 = 0.5 * Math.sqrt(((-4.0 * c) / a));
}
tmp_1 = tmp_3;
} else if (b <= 4.4e-54) {
double tmp_4;
if (b >= 0.0) {
tmp_4 = (-2.0 * c) / Math.sqrt(((a * c) * -4.0));
} else {
tmp_4 = (-2.0 * Math.sqrt(((c / a) * -1.0))) * 0.5;
}
tmp_1 = tmp_4;
} else if (b >= 0.0) {
tmp_1 = (2.0 * c) / (-b - b);
} else {
tmp_1 = (-b + -b) / (2.0 * a);
}
return tmp_1;
}
def code(a, b, c): t_0 = -b / a tmp_1 = 0 if b <= -6.5e-147: tmp_2 = 0 if b >= 0.0: tmp_2 = t_0 else: tmp_2 = t_0 tmp_1 = tmp_2 elif b <= -9.8e-276: tmp_3 = 0 if b >= 0.0: tmp_3 = t_0 else: tmp_3 = 0.5 * math.sqrt(((-4.0 * c) / a)) tmp_1 = tmp_3 elif b <= 4.4e-54: tmp_4 = 0 if b >= 0.0: tmp_4 = (-2.0 * c) / math.sqrt(((a * c) * -4.0)) else: tmp_4 = (-2.0 * math.sqrt(((c / a) * -1.0))) * 0.5 tmp_1 = tmp_4 elif b >= 0.0: tmp_1 = (2.0 * c) / (-b - b) else: tmp_1 = (-b + -b) / (2.0 * a) return tmp_1
function code(a, b, c) t_0 = Float64(Float64(-b) / a) tmp_1 = 0.0 if (b <= -6.5e-147) tmp_2 = 0.0 if (b >= 0.0) tmp_2 = t_0; else tmp_2 = t_0; end tmp_1 = tmp_2; elseif (b <= -9.8e-276) tmp_3 = 0.0 if (b >= 0.0) tmp_3 = t_0; else tmp_3 = Float64(0.5 * sqrt(Float64(Float64(-4.0 * c) / a))); end tmp_1 = tmp_3; elseif (b <= 4.4e-54) tmp_4 = 0.0 if (b >= 0.0) tmp_4 = Float64(Float64(-2.0 * c) / sqrt(Float64(Float64(a * c) * -4.0))); else tmp_4 = Float64(Float64(-2.0 * sqrt(Float64(Float64(c / a) * -1.0))) * 0.5); end tmp_1 = tmp_4; elseif (b >= 0.0) tmp_1 = Float64(Float64(2.0 * c) / Float64(Float64(-b) - b)); else tmp_1 = Float64(Float64(Float64(-b) + Float64(-b)) / Float64(2.0 * a)); end return tmp_1 end
function tmp_6 = code(a, b, c) t_0 = -b / a; tmp_2 = 0.0; if (b <= -6.5e-147) tmp_3 = 0.0; if (b >= 0.0) tmp_3 = t_0; else tmp_3 = t_0; end tmp_2 = tmp_3; elseif (b <= -9.8e-276) tmp_4 = 0.0; if (b >= 0.0) tmp_4 = t_0; else tmp_4 = 0.5 * sqrt(((-4.0 * c) / a)); end tmp_2 = tmp_4; elseif (b <= 4.4e-54) tmp_5 = 0.0; if (b >= 0.0) tmp_5 = (-2.0 * c) / sqrt(((a * c) * -4.0)); else tmp_5 = (-2.0 * sqrt(((c / a) * -1.0))) * 0.5; end tmp_2 = tmp_5; elseif (b >= 0.0) tmp_2 = (2.0 * c) / (-b - b); else tmp_2 = (-b + -b) / (2.0 * a); end tmp_6 = tmp_2; end
code[a_, b_, c_] := Block[{t$95$0 = N[((-b) / a), $MachinePrecision]}, If[LessEqual[b, -6.5e-147], If[GreaterEqual[b, 0.0], t$95$0, t$95$0], If[LessEqual[b, -9.8e-276], If[GreaterEqual[b, 0.0], t$95$0, N[(0.5 * N[Sqrt[N[(N[(-4.0 * c), $MachinePrecision] / a), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]], If[LessEqual[b, 4.4e-54], If[GreaterEqual[b, 0.0], N[(N[(-2.0 * c), $MachinePrecision] / N[Sqrt[N[(N[(a * c), $MachinePrecision] * -4.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(N[(-2.0 * N[Sqrt[N[(N[(c / a), $MachinePrecision] * -1.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * 0.5), $MachinePrecision]], If[GreaterEqual[b, 0.0], N[(N[(2.0 * c), $MachinePrecision] / N[((-b) - b), $MachinePrecision]), $MachinePrecision], N[(N[((-b) + (-b)), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{-b}{a}\\
\mathbf{if}\;b \leq -6.5 \cdot 10^{-147}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;t\_0\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}\\
\mathbf{elif}\;b \leq -9.8 \cdot 10^{-276}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;t\_0\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot \sqrt{\frac{-4 \cdot c}{a}}\\
\end{array}\\
\mathbf{elif}\;b \leq 4.4 \cdot 10^{-54}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;\frac{-2 \cdot c}{\sqrt{\left(a \cdot c\right) \cdot -4}}\\
\mathbf{else}:\\
\;\;\;\;\left(-2 \cdot \sqrt{\frac{c}{a} \cdot -1}\right) \cdot 0.5\\
\end{array}\\
\mathbf{elif}\;b \geq 0:\\
\;\;\;\;\frac{2 \cdot c}{\left(-b\right) - b}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-b\right) + \left(-b\right)}{2 \cdot a}\\
\end{array}
\end{array}
if b < -6.49999999999999967e-147Initial program 70.7%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6480.0
Applied rewrites80.0%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6480.0
Applied rewrites80.0%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6480.0
Applied rewrites80.0%
if -6.49999999999999967e-147 < b < -9.79999999999999932e-276Initial program 71.8%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6415.2
Applied rewrites15.2%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6415.2
Applied rewrites15.2%
Taylor expanded in a around inf
lower-*.f64N/A
sqrt-unprodN/A
lower-sqrt.f64N/A
lower-*.f64N/A
lift-/.f6435.8
Applied rewrites35.8%
lift-*.f64N/A
lift-/.f64N/A
*-commutativeN/A
associate-*r/N/A
lower-/.f64N/A
lower-*.f6435.8
Applied rewrites35.8%
if -9.79999999999999932e-276 < b < 4.3999999999999999e-54Initial program 80.0%
Taylor expanded in a around 0
Applied rewrites80.0%
Taylor expanded in a around -inf
lower-*.f64N/A
sqrt-prodN/A
lift-/.f64N/A
lift-*.f64N/A
lift-sqrt.f6474.9
Applied rewrites74.9%
Taylor expanded in a around inf
sqrt-unprodN/A
lower-sqrt.f64N/A
lower-*.f64N/A
lower-*.f6459.0
Applied rewrites59.0%
if 4.3999999999999999e-54 < b Initial program 66.6%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6466.6
Applied rewrites66.6%
Taylor expanded in a around 0
Applied rewrites88.5%
(FPCore (a b c)
:precision binary64
(let* ((t_0 (/ (- b) a)))
(if (<= b -8.2e-5)
(if (>= b 0.0) t_0 t_0)
(if (<= b 6.8e-62)
(if (>= b 0.0)
(/ (* 2.0 c) (- (- b) (sqrt (* (* -4.0 a) c))))
(/ (+ (- b) (sqrt (* (* a c) -4.0))) (* 2.0 a)))
(if (>= b 0.0)
(/ (+ c c) (* 2.0 (- (* a (/ c b)) b)))
(/ (+ (- b) (- b)) (* 2.0 a)))))))
double code(double a, double b, double c) {
double t_0 = -b / a;
double tmp_1;
if (b <= -8.2e-5) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = t_0;
} else {
tmp_2 = t_0;
}
tmp_1 = tmp_2;
} else if (b <= 6.8e-62) {
double tmp_3;
if (b >= 0.0) {
tmp_3 = (2.0 * c) / (-b - sqrt(((-4.0 * a) * c)));
} else {
tmp_3 = (-b + sqrt(((a * c) * -4.0))) / (2.0 * a);
}
tmp_1 = tmp_3;
} else if (b >= 0.0) {
tmp_1 = (c + c) / (2.0 * ((a * (c / b)) - b));
} else {
tmp_1 = (-b + -b) / (2.0 * a);
}
return tmp_1;
}
module fmin_fmax_functions
implicit none
private
public fmax
public fmin
interface fmax
module procedure fmax88
module procedure fmax44
module procedure fmax84
module procedure fmax48
end interface
interface fmin
module procedure fmin88
module procedure fmin44
module procedure fmin84
module procedure fmin48
end interface
contains
real(8) function fmax88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(4) function fmax44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(8) function fmax84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmax48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
end function
real(8) function fmin88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(4) function fmin44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(8) function fmin84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmin48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
end function
end module
real(8) function code(a, b, c)
use fmin_fmax_functions
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: t_0
real(8) :: tmp
real(8) :: tmp_1
real(8) :: tmp_2
real(8) :: tmp_3
t_0 = -b / a
if (b <= (-8.2d-5)) then
if (b >= 0.0d0) then
tmp_2 = t_0
else
tmp_2 = t_0
end if
tmp_1 = tmp_2
else if (b <= 6.8d-62) then
if (b >= 0.0d0) then
tmp_3 = (2.0d0 * c) / (-b - sqrt((((-4.0d0) * a) * c)))
else
tmp_3 = (-b + sqrt(((a * c) * (-4.0d0)))) / (2.0d0 * a)
end if
tmp_1 = tmp_3
else if (b >= 0.0d0) then
tmp_1 = (c + c) / (2.0d0 * ((a * (c / b)) - b))
else
tmp_1 = (-b + -b) / (2.0d0 * a)
end if
code = tmp_1
end function
public static double code(double a, double b, double c) {
double t_0 = -b / a;
double tmp_1;
if (b <= -8.2e-5) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = t_0;
} else {
tmp_2 = t_0;
}
tmp_1 = tmp_2;
} else if (b <= 6.8e-62) {
double tmp_3;
if (b >= 0.0) {
tmp_3 = (2.0 * c) / (-b - Math.sqrt(((-4.0 * a) * c)));
} else {
tmp_3 = (-b + Math.sqrt(((a * c) * -4.0))) / (2.0 * a);
}
tmp_1 = tmp_3;
} else if (b >= 0.0) {
tmp_1 = (c + c) / (2.0 * ((a * (c / b)) - b));
} else {
tmp_1 = (-b + -b) / (2.0 * a);
}
return tmp_1;
}
def code(a, b, c): t_0 = -b / a tmp_1 = 0 if b <= -8.2e-5: tmp_2 = 0 if b >= 0.0: tmp_2 = t_0 else: tmp_2 = t_0 tmp_1 = tmp_2 elif b <= 6.8e-62: tmp_3 = 0 if b >= 0.0: tmp_3 = (2.0 * c) / (-b - math.sqrt(((-4.0 * a) * c))) else: tmp_3 = (-b + math.sqrt(((a * c) * -4.0))) / (2.0 * a) tmp_1 = tmp_3 elif b >= 0.0: tmp_1 = (c + c) / (2.0 * ((a * (c / b)) - b)) else: tmp_1 = (-b + -b) / (2.0 * a) return tmp_1
function code(a, b, c) t_0 = Float64(Float64(-b) / a) tmp_1 = 0.0 if (b <= -8.2e-5) tmp_2 = 0.0 if (b >= 0.0) tmp_2 = t_0; else tmp_2 = t_0; end tmp_1 = tmp_2; elseif (b <= 6.8e-62) tmp_3 = 0.0 if (b >= 0.0) tmp_3 = Float64(Float64(2.0 * c) / Float64(Float64(-b) - sqrt(Float64(Float64(-4.0 * a) * c)))); else tmp_3 = Float64(Float64(Float64(-b) + sqrt(Float64(Float64(a * c) * -4.0))) / Float64(2.0 * a)); end tmp_1 = tmp_3; elseif (b >= 0.0) tmp_1 = Float64(Float64(c + c) / Float64(2.0 * Float64(Float64(a * Float64(c / b)) - b))); else tmp_1 = Float64(Float64(Float64(-b) + Float64(-b)) / Float64(2.0 * a)); end return tmp_1 end
function tmp_5 = code(a, b, c) t_0 = -b / a; tmp_2 = 0.0; if (b <= -8.2e-5) tmp_3 = 0.0; if (b >= 0.0) tmp_3 = t_0; else tmp_3 = t_0; end tmp_2 = tmp_3; elseif (b <= 6.8e-62) tmp_4 = 0.0; if (b >= 0.0) tmp_4 = (2.0 * c) / (-b - sqrt(((-4.0 * a) * c))); else tmp_4 = (-b + sqrt(((a * c) * -4.0))) / (2.0 * a); end tmp_2 = tmp_4; elseif (b >= 0.0) tmp_2 = (c + c) / (2.0 * ((a * (c / b)) - b)); else tmp_2 = (-b + -b) / (2.0 * a); end tmp_5 = tmp_2; end
code[a_, b_, c_] := Block[{t$95$0 = N[((-b) / a), $MachinePrecision]}, If[LessEqual[b, -8.2e-5], If[GreaterEqual[b, 0.0], t$95$0, t$95$0], If[LessEqual[b, 6.8e-62], If[GreaterEqual[b, 0.0], N[(N[(2.0 * c), $MachinePrecision] / N[((-b) - N[Sqrt[N[(N[(-4.0 * a), $MachinePrecision] * c), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[((-b) + N[Sqrt[N[(N[(a * c), $MachinePrecision] * -4.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]], If[GreaterEqual[b, 0.0], N[(N[(c + c), $MachinePrecision] / N[(2.0 * N[(N[(a * N[(c / b), $MachinePrecision]), $MachinePrecision] - b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[((-b) + (-b)), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{-b}{a}\\
\mathbf{if}\;b \leq -8.2 \cdot 10^{-5}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;t\_0\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}\\
\mathbf{elif}\;b \leq 6.8 \cdot 10^{-62}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;\frac{2 \cdot c}{\left(-b\right) - \sqrt{\left(-4 \cdot a\right) \cdot c}}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-b\right) + \sqrt{\left(a \cdot c\right) \cdot -4}}{2 \cdot a}\\
\end{array}\\
\mathbf{elif}\;b \geq 0:\\
\;\;\;\;\frac{c + c}{2 \cdot \left(a \cdot \frac{c}{b} - b\right)}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-b\right) + \left(-b\right)}{2 \cdot a}\\
\end{array}
\end{array}
if b < -8.20000000000000009e-5Initial program 64.8%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6490.5
Applied rewrites90.5%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6490.5
Applied rewrites90.5%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6490.6
Applied rewrites90.6%
if -8.20000000000000009e-5 < b < 6.79999999999999975e-62Initial program 80.8%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6451.6
Applied rewrites51.6%
Taylor expanded in a around inf
associate-*r*N/A
lower-*.f64N/A
lift-*.f6445.7
Applied rewrites45.7%
Taylor expanded in a around inf
pow2N/A
associate-*r*N/A
fp-cancel-sub-sign-invN/A
metadata-evalN/A
+-commutativeN/A
associate-*r*N/A
pow2N/A
sqrt-unprodN/A
lower-sqrt.f64N/A
lower-*.f64N/A
lower-*.f6463.6
Applied rewrites63.6%
if 6.79999999999999975e-62 < b Initial program 67.0%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6467.0
Applied rewrites67.0%
Taylor expanded in a around 0
distribute-lft-out--N/A
lower-*.f64N/A
lower--.f64N/A
associate-*r/N/A
lift-/.f64N/A
lift-*.f6488.1
Applied rewrites88.1%
lift-*.f64N/A
count-2-revN/A
lower-+.f6488.1
Applied rewrites88.1%
(FPCore (a b c)
:precision binary64
(let* ((t_0 (/ (+ (- b) (- b)) (* 2.0 a))))
(if (<= b 1.8e-163)
(if (>= b 0.0) (sqrt (* (/ c a) -1.0)) t_0)
(if (>= b 0.0) (/ (* 2.0 c) (- (- b) b)) t_0))))
double code(double a, double b, double c) {
double t_0 = (-b + -b) / (2.0 * a);
double tmp_1;
if (b <= 1.8e-163) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = sqrt(((c / a) * -1.0));
} else {
tmp_2 = t_0;
}
tmp_1 = tmp_2;
} else if (b >= 0.0) {
tmp_1 = (2.0 * c) / (-b - b);
} else {
tmp_1 = t_0;
}
return tmp_1;
}
module fmin_fmax_functions
implicit none
private
public fmax
public fmin
interface fmax
module procedure fmax88
module procedure fmax44
module procedure fmax84
module procedure fmax48
end interface
interface fmin
module procedure fmin88
module procedure fmin44
module procedure fmin84
module procedure fmin48
end interface
contains
real(8) function fmax88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(4) function fmax44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(8) function fmax84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmax48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
end function
real(8) function fmin88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(4) function fmin44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(8) function fmin84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmin48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
end function
end module
real(8) function code(a, b, c)
use fmin_fmax_functions
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: t_0
real(8) :: tmp
real(8) :: tmp_1
real(8) :: tmp_2
t_0 = (-b + -b) / (2.0d0 * a)
if (b <= 1.8d-163) then
if (b >= 0.0d0) then
tmp_2 = sqrt(((c / a) * (-1.0d0)))
else
tmp_2 = t_0
end if
tmp_1 = tmp_2
else if (b >= 0.0d0) then
tmp_1 = (2.0d0 * c) / (-b - b)
else
tmp_1 = t_0
end if
code = tmp_1
end function
public static double code(double a, double b, double c) {
double t_0 = (-b + -b) / (2.0 * a);
double tmp_1;
if (b <= 1.8e-163) {
double tmp_2;
if (b >= 0.0) {
tmp_2 = Math.sqrt(((c / a) * -1.0));
} else {
tmp_2 = t_0;
}
tmp_1 = tmp_2;
} else if (b >= 0.0) {
tmp_1 = (2.0 * c) / (-b - b);
} else {
tmp_1 = t_0;
}
return tmp_1;
}
def code(a, b, c): t_0 = (-b + -b) / (2.0 * a) tmp_1 = 0 if b <= 1.8e-163: tmp_2 = 0 if b >= 0.0: tmp_2 = math.sqrt(((c / a) * -1.0)) else: tmp_2 = t_0 tmp_1 = tmp_2 elif b >= 0.0: tmp_1 = (2.0 * c) / (-b - b) else: tmp_1 = t_0 return tmp_1
function code(a, b, c) t_0 = Float64(Float64(Float64(-b) + Float64(-b)) / Float64(2.0 * a)) tmp_1 = 0.0 if (b <= 1.8e-163) tmp_2 = 0.0 if (b >= 0.0) tmp_2 = sqrt(Float64(Float64(c / a) * -1.0)); else tmp_2 = t_0; end tmp_1 = tmp_2; elseif (b >= 0.0) tmp_1 = Float64(Float64(2.0 * c) / Float64(Float64(-b) - b)); else tmp_1 = t_0; end return tmp_1 end
function tmp_4 = code(a, b, c) t_0 = (-b + -b) / (2.0 * a); tmp_2 = 0.0; if (b <= 1.8e-163) tmp_3 = 0.0; if (b >= 0.0) tmp_3 = sqrt(((c / a) * -1.0)); else tmp_3 = t_0; end tmp_2 = tmp_3; elseif (b >= 0.0) tmp_2 = (2.0 * c) / (-b - b); else tmp_2 = t_0; end tmp_4 = tmp_2; end
code[a_, b_, c_] := Block[{t$95$0 = N[(N[((-b) + (-b)), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[b, 1.8e-163], If[GreaterEqual[b, 0.0], N[Sqrt[N[(N[(c / a), $MachinePrecision] * -1.0), $MachinePrecision]], $MachinePrecision], t$95$0], If[GreaterEqual[b, 0.0], N[(N[(2.0 * c), $MachinePrecision] / N[((-b) - b), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{\left(-b\right) + \left(-b\right)}{2 \cdot a}\\
\mathbf{if}\;b \leq 1.8 \cdot 10^{-163}:\\
\;\;\;\;\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;\sqrt{\frac{c}{a} \cdot -1}\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}\\
\mathbf{elif}\;b \geq 0:\\
\;\;\;\;\frac{2 \cdot c}{\left(-b\right) - b}\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
\end{array}
if b < 1.7999999999999999e-163Initial program 71.3%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6468.3
Applied rewrites68.3%
Taylor expanded in a around -inf
sqrt-prodN/A
lift-/.f64N/A
lift-*.f64N/A
lift-sqrt.f6462.8
Applied rewrites62.8%
if 1.7999999999999999e-163 < b Initial program 70.4%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6470.4
Applied rewrites70.4%
Taylor expanded in a around 0
Applied rewrites79.9%
(FPCore (a b c) :precision binary64 (if (>= b 0.0) (/ (* 2.0 c) (- (- b) b)) (/ (+ (- b) (- b)) (* 2.0 a))))
double code(double a, double b, double c) {
double tmp;
if (b >= 0.0) {
tmp = (2.0 * c) / (-b - b);
} else {
tmp = (-b + -b) / (2.0 * a);
}
return tmp;
}
module fmin_fmax_functions
implicit none
private
public fmax
public fmin
interface fmax
module procedure fmax88
module procedure fmax44
module procedure fmax84
module procedure fmax48
end interface
interface fmin
module procedure fmin88
module procedure fmin44
module procedure fmin84
module procedure fmin48
end interface
contains
real(8) function fmax88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(4) function fmax44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(8) function fmax84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmax48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
end function
real(8) function fmin88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(4) function fmin44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(8) function fmin84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmin48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
end function
end module
real(8) function code(a, b, c)
use fmin_fmax_functions
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: tmp
if (b >= 0.0d0) then
tmp = (2.0d0 * c) / (-b - b)
else
tmp = (-b + -b) / (2.0d0 * a)
end if
code = tmp
end function
public static double code(double a, double b, double c) {
double tmp;
if (b >= 0.0) {
tmp = (2.0 * c) / (-b - b);
} else {
tmp = (-b + -b) / (2.0 * a);
}
return tmp;
}
def code(a, b, c): tmp = 0 if b >= 0.0: tmp = (2.0 * c) / (-b - b) else: tmp = (-b + -b) / (2.0 * a) return tmp
function code(a, b, c) tmp = 0.0 if (b >= 0.0) tmp = Float64(Float64(2.0 * c) / Float64(Float64(-b) - b)); else tmp = Float64(Float64(Float64(-b) + Float64(-b)) / Float64(2.0 * a)); end return tmp end
function tmp_2 = code(a, b, c) tmp = 0.0; if (b >= 0.0) tmp = (2.0 * c) / (-b - b); else tmp = (-b + -b) / (2.0 * a); end tmp_2 = tmp; end
code[a_, b_, c_] := If[GreaterEqual[b, 0.0], N[(N[(2.0 * c), $MachinePrecision] / N[((-b) - b), $MachinePrecision]), $MachinePrecision], N[(N[((-b) + (-b)), $MachinePrecision] / N[(2.0 * a), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;b \geq 0:\\
\;\;\;\;\frac{2 \cdot c}{\left(-b\right) - b}\\
\mathbf{else}:\\
\;\;\;\;\frac{\left(-b\right) + \left(-b\right)}{2 \cdot a}\\
\end{array}
\end{array}
Initial program 70.9%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6469.2
Applied rewrites69.2%
Taylor expanded in a around 0
Applied rewrites68.2%
(FPCore (a b c) :precision binary64 (let* ((t_0 (/ (- b) a))) (if (>= b 0.0) t_0 t_0)))
double code(double a, double b, double c) {
double t_0 = -b / a;
double tmp;
if (b >= 0.0) {
tmp = t_0;
} else {
tmp = t_0;
}
return tmp;
}
module fmin_fmax_functions
implicit none
private
public fmax
public fmin
interface fmax
module procedure fmax88
module procedure fmax44
module procedure fmax84
module procedure fmax48
end interface
interface fmin
module procedure fmin88
module procedure fmin44
module procedure fmin84
module procedure fmin48
end interface
contains
real(8) function fmax88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(4) function fmax44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, max(x, y), y /= y), x /= x)
end function
real(8) function fmax84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmax48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
end function
real(8) function fmin88(x, y) result (res)
real(8), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(4) function fmin44(x, y) result (res)
real(4), intent (in) :: x
real(4), intent (in) :: y
res = merge(y, merge(x, min(x, y), y /= y), x /= x)
end function
real(8) function fmin84(x, y) result(res)
real(8), intent (in) :: x
real(4), intent (in) :: y
res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
end function
real(8) function fmin48(x, y) result(res)
real(4), intent (in) :: x
real(8), intent (in) :: y
res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
end function
end module
real(8) function code(a, b, c)
use fmin_fmax_functions
real(8), intent (in) :: a
real(8), intent (in) :: b
real(8), intent (in) :: c
real(8) :: t_0
real(8) :: tmp
t_0 = -b / a
if (b >= 0.0d0) then
tmp = t_0
else
tmp = t_0
end if
code = tmp
end function
public static double code(double a, double b, double c) {
double t_0 = -b / a;
double tmp;
if (b >= 0.0) {
tmp = t_0;
} else {
tmp = t_0;
}
return tmp;
}
def code(a, b, c): t_0 = -b / a tmp = 0 if b >= 0.0: tmp = t_0 else: tmp = t_0 return tmp
function code(a, b, c) t_0 = Float64(Float64(-b) / a) tmp = 0.0 if (b >= 0.0) tmp = t_0; else tmp = t_0; end return tmp end
function tmp_2 = code(a, b, c) t_0 = -b / a; tmp = 0.0; if (b >= 0.0) tmp = t_0; else tmp = t_0; end tmp_2 = tmp; end
code[a_, b_, c_] := Block[{t$95$0 = N[((-b) / a), $MachinePrecision]}, If[GreaterEqual[b, 0.0], t$95$0, t$95$0]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{-b}{a}\\
\mathbf{if}\;b \geq 0:\\
\;\;\;\;t\_0\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
\end{array}
Initial program 70.9%
Taylor expanded in b around -inf
mul-1-negN/A
lift-neg.f6469.2
Applied rewrites69.2%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6435.0
Applied rewrites35.0%
Taylor expanded in b around -inf
mul-1-negN/A
distribute-frac-negN/A
lift-neg.f64N/A
lift-/.f6435.1
Applied rewrites35.1%
herbie shell --seed 2025092
(FPCore (a b c)
:name "jeff quadratic root 2"
:precision binary64
(if (>= b 0.0) (/ (* 2.0 c) (- (- b) (sqrt (- (* b b) (* (* 4.0 a) c))))) (/ (+ (- b) (sqrt (- (* b b) (* (* 4.0 a) c)))) (* 2.0 a))))