
(FPCore (x y) :precision binary64 (- (- 1.0 (/ 1.0 (* x 9.0))) (/ y (* 3.0 (sqrt x)))))
double code(double x, double y) {
return (1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * sqrt(x)));
}
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(x, y)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
code = (1.0d0 - (1.0d0 / (x * 9.0d0))) - (y / (3.0d0 * sqrt(x)))
end function
public static double code(double x, double y) {
return (1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * Math.sqrt(x)));
}
def code(x, y): return (1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * math.sqrt(x)))
function code(x, y) return Float64(Float64(1.0 - Float64(1.0 / Float64(x * 9.0))) - Float64(y / Float64(3.0 * sqrt(x)))) end
function tmp = code(x, y) tmp = (1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * sqrt(x))); end
code[x_, y_] := N[(N[(1.0 - N[(1.0 / N[(x * 9.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(y / N[(3.0 * N[Sqrt[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(1 - \frac{1}{x \cdot 9}\right) - \frac{y}{3 \cdot \sqrt{x}}
\end{array}
Herbie found 15 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y) :precision binary64 (- (- 1.0 (/ 1.0 (* x 9.0))) (/ y (* 3.0 (sqrt x)))))
double code(double x, double y) {
return (1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * sqrt(x)));
}
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(x, y)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
code = (1.0d0 - (1.0d0 / (x * 9.0d0))) - (y / (3.0d0 * sqrt(x)))
end function
public static double code(double x, double y) {
return (1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * Math.sqrt(x)));
}
def code(x, y): return (1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * math.sqrt(x)))
function code(x, y) return Float64(Float64(1.0 - Float64(1.0 / Float64(x * 9.0))) - Float64(y / Float64(3.0 * sqrt(x)))) end
function tmp = code(x, y) tmp = (1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * sqrt(x))); end
code[x_, y_] := N[(N[(1.0 - N[(1.0 / N[(x * 9.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(y / N[(3.0 * N[Sqrt[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(1 - \frac{1}{x \cdot 9}\right) - \frac{y}{3 \cdot \sqrt{x}}
\end{array}
(FPCore (x y) :precision binary64 (- (- 1.0 (/ 1.0 (* x 9.0))) (/ (/ y 3.0) (sqrt x))))
double code(double x, double y) {
return (1.0 - (1.0 / (x * 9.0))) - ((y / 3.0) / sqrt(x));
}
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(x, y)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
code = (1.0d0 - (1.0d0 / (x * 9.0d0))) - ((y / 3.0d0) / sqrt(x))
end function
public static double code(double x, double y) {
return (1.0 - (1.0 / (x * 9.0))) - ((y / 3.0) / Math.sqrt(x));
}
def code(x, y): return (1.0 - (1.0 / (x * 9.0))) - ((y / 3.0) / math.sqrt(x))
function code(x, y) return Float64(Float64(1.0 - Float64(1.0 / Float64(x * 9.0))) - Float64(Float64(y / 3.0) / sqrt(x))) end
function tmp = code(x, y) tmp = (1.0 - (1.0 / (x * 9.0))) - ((y / 3.0) / sqrt(x)); end
code[x_, y_] := N[(N[(1.0 - N[(1.0 / N[(x * 9.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(N[(y / 3.0), $MachinePrecision] / N[Sqrt[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(1 - \frac{1}{x \cdot 9}\right) - \frac{\frac{y}{3}}{\sqrt{x}}
\end{array}
Initial program 99.7%
lift-/.f64N/A
lift-*.f64N/A
lift-sqrt.f64N/A
associate-/r*N/A
lower-/.f64N/A
lower-/.f64N/A
lift-sqrt.f6499.7
Applied rewrites99.7%
(FPCore (x y) :precision binary64 (if (<= x 8e+22) (/ (- x (fma (* (sqrt x) y) 0.3333333333333333 0.1111111111111111)) x) (- 1.0 (/ y (* 3.0 (sqrt x))))))
double code(double x, double y) {
double tmp;
if (x <= 8e+22) {
tmp = (x - fma((sqrt(x) * y), 0.3333333333333333, 0.1111111111111111)) / x;
} else {
tmp = 1.0 - (y / (3.0 * sqrt(x)));
}
return tmp;
}
function code(x, y) tmp = 0.0 if (x <= 8e+22) tmp = Float64(Float64(x - fma(Float64(sqrt(x) * y), 0.3333333333333333, 0.1111111111111111)) / x); else tmp = Float64(1.0 - Float64(y / Float64(3.0 * sqrt(x)))); end return tmp end
code[x_, y_] := If[LessEqual[x, 8e+22], N[(N[(x - N[(N[(N[Sqrt[x], $MachinePrecision] * y), $MachinePrecision] * 0.3333333333333333 + 0.1111111111111111), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision], N[(1.0 - N[(y / N[(3.0 * N[Sqrt[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq 8 \cdot 10^{+22}:\\
\;\;\;\;\frac{x - \mathsf{fma}\left(\sqrt{x} \cdot y, 0.3333333333333333, 0.1111111111111111\right)}{x}\\
\mathbf{else}:\\
\;\;\;\;1 - \frac{y}{3 \cdot \sqrt{x}}\\
\end{array}
\end{array}
if x < 8e22Initial program 99.6%
Taylor expanded in x around 0
lower-/.f64N/A
lower--.f64N/A
+-commutativeN/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f64N/A
lift-sqrt.f6499.4
Applied rewrites99.4%
if 8e22 < x Initial program 99.8%
Taylor expanded in x around inf
Applied rewrites99.8%
(FPCore (x y) :precision binary64 (- (- 1.0 (/ 1.0 (* x 9.0))) (/ y (* 3.0 (sqrt x)))))
double code(double x, double y) {
return (1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * sqrt(x)));
}
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(x, y)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
code = (1.0d0 - (1.0d0 / (x * 9.0d0))) - (y / (3.0d0 * sqrt(x)))
end function
public static double code(double x, double y) {
return (1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * Math.sqrt(x)));
}
def code(x, y): return (1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * math.sqrt(x)))
function code(x, y) return Float64(Float64(1.0 - Float64(1.0 / Float64(x * 9.0))) - Float64(y / Float64(3.0 * sqrt(x)))) end
function tmp = code(x, y) tmp = (1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * sqrt(x))); end
code[x_, y_] := N[(N[(1.0 - N[(1.0 / N[(x * 9.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(y / N[(3.0 * N[Sqrt[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(1 - \frac{1}{x \cdot 9}\right) - \frac{y}{3 \cdot \sqrt{x}}
\end{array}
Initial program 99.7%
(FPCore (x y) :precision binary64 (if (<= x 2e+35) (/ (- x (fma (sqrt x) (* y 0.3333333333333333) 0.1111111111111111)) x) (fma (/ -0.3333333333333333 (sqrt x)) y 1.0)))
double code(double x, double y) {
double tmp;
if (x <= 2e+35) {
tmp = (x - fma(sqrt(x), (y * 0.3333333333333333), 0.1111111111111111)) / x;
} else {
tmp = fma((-0.3333333333333333 / sqrt(x)), y, 1.0);
}
return tmp;
}
function code(x, y) tmp = 0.0 if (x <= 2e+35) tmp = Float64(Float64(x - fma(sqrt(x), Float64(y * 0.3333333333333333), 0.1111111111111111)) / x); else tmp = fma(Float64(-0.3333333333333333 / sqrt(x)), y, 1.0); end return tmp end
code[x_, y_] := If[LessEqual[x, 2e+35], N[(N[(x - N[(N[Sqrt[x], $MachinePrecision] * N[(y * 0.3333333333333333), $MachinePrecision] + 0.1111111111111111), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision], N[(N[(-0.3333333333333333 / N[Sqrt[x], $MachinePrecision]), $MachinePrecision] * y + 1.0), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq 2 \cdot 10^{+35}:\\
\;\;\;\;\frac{x - \mathsf{fma}\left(\sqrt{x}, y \cdot 0.3333333333333333, 0.1111111111111111\right)}{x}\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(\frac{-0.3333333333333333}{\sqrt{x}}, y, 1\right)\\
\end{array}
\end{array}
if x < 1.9999999999999999e35Initial program 99.6%
Taylor expanded in x around 0
lower-/.f64N/A
lower--.f64N/A
+-commutativeN/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f64N/A
lift-sqrt.f6499.4
Applied rewrites99.4%
lift-fma.f64N/A
lift-*.f64N/A
lift-sqrt.f64N/A
associate-*l*N/A
lower-fma.f64N/A
lift-sqrt.f64N/A
lower-*.f6499.4
Applied rewrites99.4%
if 1.9999999999999999e35 < x Initial program 99.8%
Taylor expanded in x around 0
lower-/.f64N/A
lower--.f64N/A
+-commutativeN/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f64N/A
lift-sqrt.f6486.1
Applied rewrites86.1%
Taylor expanded in x around inf
metadata-evalN/A
fp-cancel-sign-sub-invN/A
+-commutativeN/A
associate-*r*N/A
lower-fma.f64N/A
*-commutativeN/A
sqrt-divN/A
metadata-evalN/A
associate-*l/N/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f6499.8
Applied rewrites99.8%
(FPCore (x y) :precision binary64 (- 1.0 (fma (* (/ 1.0 (sqrt x)) y) 0.3333333333333333 (/ 0.1111111111111111 x))))
double code(double x, double y) {
return 1.0 - fma(((1.0 / sqrt(x)) * y), 0.3333333333333333, (0.1111111111111111 / x));
}
function code(x, y) return Float64(1.0 - fma(Float64(Float64(1.0 / sqrt(x)) * y), 0.3333333333333333, Float64(0.1111111111111111 / x))) end
code[x_, y_] := N[(1.0 - N[(N[(N[(1.0 / N[Sqrt[x], $MachinePrecision]), $MachinePrecision] * y), $MachinePrecision] * 0.3333333333333333 + N[(0.1111111111111111 / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
1 - \mathsf{fma}\left(\frac{1}{\sqrt{x}} \cdot y, 0.3333333333333333, \frac{0.1111111111111111}{x}\right)
\end{array}
Initial program 99.7%
Taylor expanded in x around inf
lower--.f64N/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f64N/A
sqrt-divN/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6499.5
Applied rewrites99.5%
(FPCore (x y) :precision binary64 (if (<= x 1.45e-5) (- (/ (fma (* 0.3333333333333333 (sqrt x)) y 0.1111111111111111) x)) (- 1.0 (/ y (* 3.0 (sqrt x))))))
double code(double x, double y) {
double tmp;
if (x <= 1.45e-5) {
tmp = -(fma((0.3333333333333333 * sqrt(x)), y, 0.1111111111111111) / x);
} else {
tmp = 1.0 - (y / (3.0 * sqrt(x)));
}
return tmp;
}
function code(x, y) tmp = 0.0 if (x <= 1.45e-5) tmp = Float64(-Float64(fma(Float64(0.3333333333333333 * sqrt(x)), y, 0.1111111111111111) / x)); else tmp = Float64(1.0 - Float64(y / Float64(3.0 * sqrt(x)))); end return tmp end
code[x_, y_] := If[LessEqual[x, 1.45e-5], (-N[(N[(N[(0.3333333333333333 * N[Sqrt[x], $MachinePrecision]), $MachinePrecision] * y + 0.1111111111111111), $MachinePrecision] / x), $MachinePrecision]), N[(1.0 - N[(y / N[(3.0 * N[Sqrt[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq 1.45 \cdot 10^{-5}:\\
\;\;\;\;-\frac{\mathsf{fma}\left(0.3333333333333333 \cdot \sqrt{x}, y, 0.1111111111111111\right)}{x}\\
\mathbf{else}:\\
\;\;\;\;1 - \frac{y}{3 \cdot \sqrt{x}}\\
\end{array}
\end{array}
if x < 1.45e-5Initial program 99.6%
Taylor expanded in x around 0
mul-1-negN/A
lower-neg.f64N/A
lower-/.f64N/A
+-commutativeN/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f64N/A
lift-sqrt.f6498.8
Applied rewrites98.8%
lift-fma.f64N/A
lift-*.f64N/A
lift-sqrt.f64N/A
*-commutativeN/A
associate-*r*N/A
lower-fma.f64N/A
lower-*.f64N/A
lift-sqrt.f6498.8
Applied rewrites98.8%
if 1.45e-5 < x Initial program 99.8%
Taylor expanded in x around inf
Applied rewrites98.0%
(FPCore (x y)
:precision binary64
(let* ((t_0 (- 1.0 (/ y (* 3.0 (sqrt x))))))
(if (<= y -4e+76)
t_0
(if (<= y 1.12e+117) (- 1.0 (* (/ 1.0 x) 0.1111111111111111)) t_0))))
double code(double x, double y) {
double t_0 = 1.0 - (y / (3.0 * sqrt(x)));
double tmp;
if (y <= -4e+76) {
tmp = t_0;
} else if (y <= 1.12e+117) {
tmp = 1.0 - ((1.0 / x) * 0.1111111111111111);
} 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(x, y)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: t_0
real(8) :: tmp
t_0 = 1.0d0 - (y / (3.0d0 * sqrt(x)))
if (y <= (-4d+76)) then
tmp = t_0
else if (y <= 1.12d+117) then
tmp = 1.0d0 - ((1.0d0 / x) * 0.1111111111111111d0)
else
tmp = t_0
end if
code = tmp
end function
public static double code(double x, double y) {
double t_0 = 1.0 - (y / (3.0 * Math.sqrt(x)));
double tmp;
if (y <= -4e+76) {
tmp = t_0;
} else if (y <= 1.12e+117) {
tmp = 1.0 - ((1.0 / x) * 0.1111111111111111);
} else {
tmp = t_0;
}
return tmp;
}
def code(x, y): t_0 = 1.0 - (y / (3.0 * math.sqrt(x))) tmp = 0 if y <= -4e+76: tmp = t_0 elif y <= 1.12e+117: tmp = 1.0 - ((1.0 / x) * 0.1111111111111111) else: tmp = t_0 return tmp
function code(x, y) t_0 = Float64(1.0 - Float64(y / Float64(3.0 * sqrt(x)))) tmp = 0.0 if (y <= -4e+76) tmp = t_0; elseif (y <= 1.12e+117) tmp = Float64(1.0 - Float64(Float64(1.0 / x) * 0.1111111111111111)); else tmp = t_0; end return tmp end
function tmp_2 = code(x, y) t_0 = 1.0 - (y / (3.0 * sqrt(x))); tmp = 0.0; if (y <= -4e+76) tmp = t_0; elseif (y <= 1.12e+117) tmp = 1.0 - ((1.0 / x) * 0.1111111111111111); else tmp = t_0; end tmp_2 = tmp; end
code[x_, y_] := Block[{t$95$0 = N[(1.0 - N[(y / N[(3.0 * N[Sqrt[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[y, -4e+76], t$95$0, If[LessEqual[y, 1.12e+117], N[(1.0 - N[(N[(1.0 / x), $MachinePrecision] * 0.1111111111111111), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := 1 - \frac{y}{3 \cdot \sqrt{x}}\\
\mathbf{if}\;y \leq -4 \cdot 10^{+76}:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;y \leq 1.12 \cdot 10^{+117}:\\
\;\;\;\;1 - \frac{1}{x} \cdot 0.1111111111111111\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
\end{array}
if y < -4.0000000000000002e76 or 1.12000000000000002e117 < y Initial program 99.6%
Taylor expanded in x around inf
Applied rewrites96.5%
if -4.0000000000000002e76 < y < 1.12000000000000002e117Initial program 99.8%
Taylor expanded in y around 0
lower--.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6491.4
Applied rewrites91.4%
lift-/.f64N/A
metadata-evalN/A
associate-*r/N/A
*-commutativeN/A
lower-*.f64N/A
lower-/.f6491.4
Applied rewrites91.4%
(FPCore (x y)
:precision binary64
(if (<= y -4e+76)
(fma (/ -0.3333333333333333 (sqrt x)) y 1.0)
(if (<= y 1.12e+117)
(- 1.0 (* (/ 1.0 x) 0.1111111111111111))
(* (/ y (sqrt x)) -0.3333333333333333))))
double code(double x, double y) {
double tmp;
if (y <= -4e+76) {
tmp = fma((-0.3333333333333333 / sqrt(x)), y, 1.0);
} else if (y <= 1.12e+117) {
tmp = 1.0 - ((1.0 / x) * 0.1111111111111111);
} else {
tmp = (y / sqrt(x)) * -0.3333333333333333;
}
return tmp;
}
function code(x, y) tmp = 0.0 if (y <= -4e+76) tmp = fma(Float64(-0.3333333333333333 / sqrt(x)), y, 1.0); elseif (y <= 1.12e+117) tmp = Float64(1.0 - Float64(Float64(1.0 / x) * 0.1111111111111111)); else tmp = Float64(Float64(y / sqrt(x)) * -0.3333333333333333); end return tmp end
code[x_, y_] := If[LessEqual[y, -4e+76], N[(N[(-0.3333333333333333 / N[Sqrt[x], $MachinePrecision]), $MachinePrecision] * y + 1.0), $MachinePrecision], If[LessEqual[y, 1.12e+117], N[(1.0 - N[(N[(1.0 / x), $MachinePrecision] * 0.1111111111111111), $MachinePrecision]), $MachinePrecision], N[(N[(y / N[Sqrt[x], $MachinePrecision]), $MachinePrecision] * -0.3333333333333333), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq -4 \cdot 10^{+76}:\\
\;\;\;\;\mathsf{fma}\left(\frac{-0.3333333333333333}{\sqrt{x}}, y, 1\right)\\
\mathbf{elif}\;y \leq 1.12 \cdot 10^{+117}:\\
\;\;\;\;1 - \frac{1}{x} \cdot 0.1111111111111111\\
\mathbf{else}:\\
\;\;\;\;\frac{y}{\sqrt{x}} \cdot -0.3333333333333333\\
\end{array}
\end{array}
if y < -4.0000000000000002e76Initial program 99.6%
Taylor expanded in x around 0
lower-/.f64N/A
lower--.f64N/A
+-commutativeN/A
*-commutativeN/A
lower-fma.f64N/A
lower-*.f64N/A
lift-sqrt.f6483.3
Applied rewrites83.3%
Taylor expanded in x around inf
metadata-evalN/A
fp-cancel-sign-sub-invN/A
+-commutativeN/A
associate-*r*N/A
lower-fma.f64N/A
*-commutativeN/A
sqrt-divN/A
metadata-evalN/A
associate-*l/N/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f6495.0
Applied rewrites95.0%
if -4.0000000000000002e76 < y < 1.12000000000000002e117Initial program 99.8%
Taylor expanded in y around 0
lower--.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6491.4
Applied rewrites91.4%
lift-/.f64N/A
metadata-evalN/A
associate-*r/N/A
*-commutativeN/A
lower-*.f64N/A
lower-/.f6491.4
Applied rewrites91.4%
if 1.12000000000000002e117 < y Initial program 99.6%
Taylor expanded in y around inf
lower-*.f64N/A
lower-*.f64N/A
sqrt-divN/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f6496.2
Applied rewrites96.2%
lift-*.f64N/A
lift-*.f64N/A
lift-/.f64N/A
metadata-evalN/A
lift-sqrt.f64N/A
sqrt-divN/A
associate-*r*N/A
lower-*.f64N/A
*-commutativeN/A
lower-*.f64N/A
sqrt-divN/A
metadata-evalN/A
lift-sqrt.f64N/A
lift-/.f6496.3
Applied rewrites96.3%
lift-*.f64N/A
lift-/.f64N/A
lift-sqrt.f64N/A
associate-*l/N/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f6496.4
Applied rewrites96.4%
lift-*.f64N/A
lift-/.f64N/A
lift-sqrt.f64N/A
associate-*l/N/A
associate-*r/N/A
*-lft-identityN/A
*-commutativeN/A
lower-*.f64N/A
lift-sqrt.f64N/A
lift-/.f64N/A
*-lft-identity96.3
Applied rewrites96.3%
(FPCore (x y)
:precision binary64
(if (<= y -2.6e+88)
(/ (* -0.3333333333333333 y) (sqrt x))
(if (<= y 1.12e+117)
(- 1.0 (* (/ 1.0 x) 0.1111111111111111))
(* (/ y (sqrt x)) -0.3333333333333333))))
double code(double x, double y) {
double tmp;
if (y <= -2.6e+88) {
tmp = (-0.3333333333333333 * y) / sqrt(x);
} else if (y <= 1.12e+117) {
tmp = 1.0 - ((1.0 / x) * 0.1111111111111111);
} else {
tmp = (y / sqrt(x)) * -0.3333333333333333;
}
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(x, y)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if (y <= (-2.6d+88)) then
tmp = ((-0.3333333333333333d0) * y) / sqrt(x)
else if (y <= 1.12d+117) then
tmp = 1.0d0 - ((1.0d0 / x) * 0.1111111111111111d0)
else
tmp = (y / sqrt(x)) * (-0.3333333333333333d0)
end if
code = tmp
end function
public static double code(double x, double y) {
double tmp;
if (y <= -2.6e+88) {
tmp = (-0.3333333333333333 * y) / Math.sqrt(x);
} else if (y <= 1.12e+117) {
tmp = 1.0 - ((1.0 / x) * 0.1111111111111111);
} else {
tmp = (y / Math.sqrt(x)) * -0.3333333333333333;
}
return tmp;
}
def code(x, y): tmp = 0 if y <= -2.6e+88: tmp = (-0.3333333333333333 * y) / math.sqrt(x) elif y <= 1.12e+117: tmp = 1.0 - ((1.0 / x) * 0.1111111111111111) else: tmp = (y / math.sqrt(x)) * -0.3333333333333333 return tmp
function code(x, y) tmp = 0.0 if (y <= -2.6e+88) tmp = Float64(Float64(-0.3333333333333333 * y) / sqrt(x)); elseif (y <= 1.12e+117) tmp = Float64(1.0 - Float64(Float64(1.0 / x) * 0.1111111111111111)); else tmp = Float64(Float64(y / sqrt(x)) * -0.3333333333333333); end return tmp end
function tmp_2 = code(x, y) tmp = 0.0; if (y <= -2.6e+88) tmp = (-0.3333333333333333 * y) / sqrt(x); elseif (y <= 1.12e+117) tmp = 1.0 - ((1.0 / x) * 0.1111111111111111); else tmp = (y / sqrt(x)) * -0.3333333333333333; end tmp_2 = tmp; end
code[x_, y_] := If[LessEqual[y, -2.6e+88], N[(N[(-0.3333333333333333 * y), $MachinePrecision] / N[Sqrt[x], $MachinePrecision]), $MachinePrecision], If[LessEqual[y, 1.12e+117], N[(1.0 - N[(N[(1.0 / x), $MachinePrecision] * 0.1111111111111111), $MachinePrecision]), $MachinePrecision], N[(N[(y / N[Sqrt[x], $MachinePrecision]), $MachinePrecision] * -0.3333333333333333), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq -2.6 \cdot 10^{+88}:\\
\;\;\;\;\frac{-0.3333333333333333 \cdot y}{\sqrt{x}}\\
\mathbf{elif}\;y \leq 1.12 \cdot 10^{+117}:\\
\;\;\;\;1 - \frac{1}{x} \cdot 0.1111111111111111\\
\mathbf{else}:\\
\;\;\;\;\frac{y}{\sqrt{x}} \cdot -0.3333333333333333\\
\end{array}
\end{array}
if y < -2.6000000000000001e88Initial program 99.6%
Taylor expanded in y around inf
lower-*.f64N/A
lower-*.f64N/A
sqrt-divN/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f6491.8
Applied rewrites91.8%
lift-*.f64N/A
lift-*.f64N/A
lift-/.f64N/A
metadata-evalN/A
lift-sqrt.f64N/A
sqrt-divN/A
associate-*r*N/A
lower-*.f64N/A
*-commutativeN/A
lower-*.f64N/A
sqrt-divN/A
metadata-evalN/A
lift-sqrt.f64N/A
lift-/.f6491.9
Applied rewrites91.9%
lift-*.f64N/A
lift-/.f64N/A
lift-sqrt.f64N/A
associate-*l/N/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f6491.9
Applied rewrites91.9%
lift-*.f64N/A
lift-/.f64N/A
lift-sqrt.f64N/A
associate-*l/N/A
lower-/.f64N/A
lower-*.f64N/A
lift-sqrt.f6491.9
Applied rewrites91.9%
if -2.6000000000000001e88 < y < 1.12000000000000002e117Initial program 99.8%
Taylor expanded in y around 0
lower--.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6490.9
Applied rewrites90.9%
lift-/.f64N/A
metadata-evalN/A
associate-*r/N/A
*-commutativeN/A
lower-*.f64N/A
lower-/.f6490.9
Applied rewrites90.9%
if 1.12000000000000002e117 < y Initial program 99.6%
Taylor expanded in y around inf
lower-*.f64N/A
lower-*.f64N/A
sqrt-divN/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f6496.2
Applied rewrites96.2%
lift-*.f64N/A
lift-*.f64N/A
lift-/.f64N/A
metadata-evalN/A
lift-sqrt.f64N/A
sqrt-divN/A
associate-*r*N/A
lower-*.f64N/A
*-commutativeN/A
lower-*.f64N/A
sqrt-divN/A
metadata-evalN/A
lift-sqrt.f64N/A
lift-/.f6496.3
Applied rewrites96.3%
lift-*.f64N/A
lift-/.f64N/A
lift-sqrt.f64N/A
associate-*l/N/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f6496.4
Applied rewrites96.4%
lift-*.f64N/A
lift-/.f64N/A
lift-sqrt.f64N/A
associate-*l/N/A
associate-*r/N/A
*-lft-identityN/A
*-commutativeN/A
lower-*.f64N/A
lift-sqrt.f64N/A
lift-/.f64N/A
*-lft-identity96.3
Applied rewrites96.3%
(FPCore (x y)
:precision binary64
(let* ((t_0 (* (/ y (sqrt x)) -0.3333333333333333)))
(if (<= y -2.6e+88)
t_0
(if (<= y 1.12e+117) (- 1.0 (* (/ 1.0 x) 0.1111111111111111)) t_0))))
double code(double x, double y) {
double t_0 = (y / sqrt(x)) * -0.3333333333333333;
double tmp;
if (y <= -2.6e+88) {
tmp = t_0;
} else if (y <= 1.12e+117) {
tmp = 1.0 - ((1.0 / x) * 0.1111111111111111);
} 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(x, y)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: t_0
real(8) :: tmp
t_0 = (y / sqrt(x)) * (-0.3333333333333333d0)
if (y <= (-2.6d+88)) then
tmp = t_0
else if (y <= 1.12d+117) then
tmp = 1.0d0 - ((1.0d0 / x) * 0.1111111111111111d0)
else
tmp = t_0
end if
code = tmp
end function
public static double code(double x, double y) {
double t_0 = (y / Math.sqrt(x)) * -0.3333333333333333;
double tmp;
if (y <= -2.6e+88) {
tmp = t_0;
} else if (y <= 1.12e+117) {
tmp = 1.0 - ((1.0 / x) * 0.1111111111111111);
} else {
tmp = t_0;
}
return tmp;
}
def code(x, y): t_0 = (y / math.sqrt(x)) * -0.3333333333333333 tmp = 0 if y <= -2.6e+88: tmp = t_0 elif y <= 1.12e+117: tmp = 1.0 - ((1.0 / x) * 0.1111111111111111) else: tmp = t_0 return tmp
function code(x, y) t_0 = Float64(Float64(y / sqrt(x)) * -0.3333333333333333) tmp = 0.0 if (y <= -2.6e+88) tmp = t_0; elseif (y <= 1.12e+117) tmp = Float64(1.0 - Float64(Float64(1.0 / x) * 0.1111111111111111)); else tmp = t_0; end return tmp end
function tmp_2 = code(x, y) t_0 = (y / sqrt(x)) * -0.3333333333333333; tmp = 0.0; if (y <= -2.6e+88) tmp = t_0; elseif (y <= 1.12e+117) tmp = 1.0 - ((1.0 / x) * 0.1111111111111111); else tmp = t_0; end tmp_2 = tmp; end
code[x_, y_] := Block[{t$95$0 = N[(N[(y / N[Sqrt[x], $MachinePrecision]), $MachinePrecision] * -0.3333333333333333), $MachinePrecision]}, If[LessEqual[y, -2.6e+88], t$95$0, If[LessEqual[y, 1.12e+117], N[(1.0 - N[(N[(1.0 / x), $MachinePrecision] * 0.1111111111111111), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{y}{\sqrt{x}} \cdot -0.3333333333333333\\
\mathbf{if}\;y \leq -2.6 \cdot 10^{+88}:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;y \leq 1.12 \cdot 10^{+117}:\\
\;\;\;\;1 - \frac{1}{x} \cdot 0.1111111111111111\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
\end{array}
if y < -2.6000000000000001e88 or 1.12000000000000002e117 < y Initial program 99.6%
Taylor expanded in y around inf
lower-*.f64N/A
lower-*.f64N/A
sqrt-divN/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f6493.9
Applied rewrites93.9%
lift-*.f64N/A
lift-*.f64N/A
lift-/.f64N/A
metadata-evalN/A
lift-sqrt.f64N/A
sqrt-divN/A
associate-*r*N/A
lower-*.f64N/A
*-commutativeN/A
lower-*.f64N/A
sqrt-divN/A
metadata-evalN/A
lift-sqrt.f64N/A
lift-/.f6494.0
Applied rewrites94.0%
lift-*.f64N/A
lift-/.f64N/A
lift-sqrt.f64N/A
associate-*l/N/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f6494.0
Applied rewrites94.0%
lift-*.f64N/A
lift-/.f64N/A
lift-sqrt.f64N/A
associate-*l/N/A
associate-*r/N/A
*-lft-identityN/A
*-commutativeN/A
lower-*.f64N/A
lift-sqrt.f64N/A
lift-/.f64N/A
*-lft-identity93.9
Applied rewrites93.9%
if -2.6000000000000001e88 < y < 1.12000000000000002e117Initial program 99.8%
Taylor expanded in y around 0
lower--.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6490.9
Applied rewrites90.9%
lift-/.f64N/A
metadata-evalN/A
associate-*r/N/A
*-commutativeN/A
lower-*.f64N/A
lower-/.f6490.9
Applied rewrites90.9%
(FPCore (x y)
:precision binary64
(let* ((t_0 (* (/ -0.3333333333333333 (sqrt x)) y)))
(if (<= y -2.6e+88)
t_0
(if (<= y 1.12e+117) (- 1.0 (* (/ 1.0 x) 0.1111111111111111)) t_0))))
double code(double x, double y) {
double t_0 = (-0.3333333333333333 / sqrt(x)) * y;
double tmp;
if (y <= -2.6e+88) {
tmp = t_0;
} else if (y <= 1.12e+117) {
tmp = 1.0 - ((1.0 / x) * 0.1111111111111111);
} 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(x, y)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: t_0
real(8) :: tmp
t_0 = ((-0.3333333333333333d0) / sqrt(x)) * y
if (y <= (-2.6d+88)) then
tmp = t_0
else if (y <= 1.12d+117) then
tmp = 1.0d0 - ((1.0d0 / x) * 0.1111111111111111d0)
else
tmp = t_0
end if
code = tmp
end function
public static double code(double x, double y) {
double t_0 = (-0.3333333333333333 / Math.sqrt(x)) * y;
double tmp;
if (y <= -2.6e+88) {
tmp = t_0;
} else if (y <= 1.12e+117) {
tmp = 1.0 - ((1.0 / x) * 0.1111111111111111);
} else {
tmp = t_0;
}
return tmp;
}
def code(x, y): t_0 = (-0.3333333333333333 / math.sqrt(x)) * y tmp = 0 if y <= -2.6e+88: tmp = t_0 elif y <= 1.12e+117: tmp = 1.0 - ((1.0 / x) * 0.1111111111111111) else: tmp = t_0 return tmp
function code(x, y) t_0 = Float64(Float64(-0.3333333333333333 / sqrt(x)) * y) tmp = 0.0 if (y <= -2.6e+88) tmp = t_0; elseif (y <= 1.12e+117) tmp = Float64(1.0 - Float64(Float64(1.0 / x) * 0.1111111111111111)); else tmp = t_0; end return tmp end
function tmp_2 = code(x, y) t_0 = (-0.3333333333333333 / sqrt(x)) * y; tmp = 0.0; if (y <= -2.6e+88) tmp = t_0; elseif (y <= 1.12e+117) tmp = 1.0 - ((1.0 / x) * 0.1111111111111111); else tmp = t_0; end tmp_2 = tmp; end
code[x_, y_] := Block[{t$95$0 = N[(N[(-0.3333333333333333 / N[Sqrt[x], $MachinePrecision]), $MachinePrecision] * y), $MachinePrecision]}, If[LessEqual[y, -2.6e+88], t$95$0, If[LessEqual[y, 1.12e+117], N[(1.0 - N[(N[(1.0 / x), $MachinePrecision] * 0.1111111111111111), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{-0.3333333333333333}{\sqrt{x}} \cdot y\\
\mathbf{if}\;y \leq -2.6 \cdot 10^{+88}:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;y \leq 1.12 \cdot 10^{+117}:\\
\;\;\;\;1 - \frac{1}{x} \cdot 0.1111111111111111\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
\end{array}
if y < -2.6000000000000001e88 or 1.12000000000000002e117 < y Initial program 99.6%
Taylor expanded in y around inf
lower-*.f64N/A
lower-*.f64N/A
sqrt-divN/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f6493.9
Applied rewrites93.9%
lift-*.f64N/A
lift-*.f64N/A
lift-/.f64N/A
metadata-evalN/A
lift-sqrt.f64N/A
sqrt-divN/A
associate-*r*N/A
lower-*.f64N/A
*-commutativeN/A
lower-*.f64N/A
sqrt-divN/A
metadata-evalN/A
lift-sqrt.f64N/A
lift-/.f6494.0
Applied rewrites94.0%
lift-*.f64N/A
lift-/.f64N/A
lift-sqrt.f64N/A
associate-*l/N/A
metadata-evalN/A
lower-/.f64N/A
lift-sqrt.f6494.0
Applied rewrites94.0%
if -2.6000000000000001e88 < y < 1.12000000000000002e117Initial program 99.8%
Taylor expanded in y around 0
lower--.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6490.9
Applied rewrites90.9%
lift-/.f64N/A
metadata-evalN/A
associate-*r/N/A
*-commutativeN/A
lower-*.f64N/A
lower-/.f6490.9
Applied rewrites90.9%
(FPCore (x y) :precision binary64 (- 1.0 (* (/ 1.0 x) 0.1111111111111111)))
double code(double x, double y) {
return 1.0 - ((1.0 / x) * 0.1111111111111111);
}
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(x, y)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
code = 1.0d0 - ((1.0d0 / x) * 0.1111111111111111d0)
end function
public static double code(double x, double y) {
return 1.0 - ((1.0 / x) * 0.1111111111111111);
}
def code(x, y): return 1.0 - ((1.0 / x) * 0.1111111111111111)
function code(x, y) return Float64(1.0 - Float64(Float64(1.0 / x) * 0.1111111111111111)) end
function tmp = code(x, y) tmp = 1.0 - ((1.0 / x) * 0.1111111111111111); end
code[x_, y_] := N[(1.0 - N[(N[(1.0 / x), $MachinePrecision] * 0.1111111111111111), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
1 - \frac{1}{x} \cdot 0.1111111111111111
\end{array}
Initial program 99.7%
Taylor expanded in y around 0
lower--.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6462.8
Applied rewrites62.8%
lift-/.f64N/A
metadata-evalN/A
associate-*r/N/A
*-commutativeN/A
lower-*.f64N/A
lower-/.f6462.8
Applied rewrites62.8%
(FPCore (x y) :precision binary64 (- 1.0 (/ 0.1111111111111111 x)))
double code(double x, double y) {
return 1.0 - (0.1111111111111111 / x);
}
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(x, y)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
code = 1.0d0 - (0.1111111111111111d0 / x)
end function
public static double code(double x, double y) {
return 1.0 - (0.1111111111111111 / x);
}
def code(x, y): return 1.0 - (0.1111111111111111 / x)
function code(x, y) return Float64(1.0 - Float64(0.1111111111111111 / x)) end
function tmp = code(x, y) tmp = 1.0 - (0.1111111111111111 / x); end
code[x_, y_] := N[(1.0 - N[(0.1111111111111111 / x), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
1 - \frac{0.1111111111111111}{x}
\end{array}
Initial program 99.7%
Taylor expanded in y around 0
lower--.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6462.8
Applied rewrites62.8%
(FPCore (x y) :precision binary64 (if (<= (- (- 1.0 (/ 1.0 (* x 9.0))) (/ y (* 3.0 (sqrt x)))) -200.0) (/ -0.1111111111111111 x) 1.0))
double code(double x, double y) {
double tmp;
if (((1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * sqrt(x)))) <= -200.0) {
tmp = -0.1111111111111111 / x;
} else {
tmp = 1.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(x, y)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if (((1.0d0 - (1.0d0 / (x * 9.0d0))) - (y / (3.0d0 * sqrt(x)))) <= (-200.0d0)) then
tmp = (-0.1111111111111111d0) / x
else
tmp = 1.0d0
end if
code = tmp
end function
public static double code(double x, double y) {
double tmp;
if (((1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * Math.sqrt(x)))) <= -200.0) {
tmp = -0.1111111111111111 / x;
} else {
tmp = 1.0;
}
return tmp;
}
def code(x, y): tmp = 0 if ((1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * math.sqrt(x)))) <= -200.0: tmp = -0.1111111111111111 / x else: tmp = 1.0 return tmp
function code(x, y) tmp = 0.0 if (Float64(Float64(1.0 - Float64(1.0 / Float64(x * 9.0))) - Float64(y / Float64(3.0 * sqrt(x)))) <= -200.0) tmp = Float64(-0.1111111111111111 / x); else tmp = 1.0; end return tmp end
function tmp_2 = code(x, y) tmp = 0.0; if (((1.0 - (1.0 / (x * 9.0))) - (y / (3.0 * sqrt(x)))) <= -200.0) tmp = -0.1111111111111111 / x; else tmp = 1.0; end tmp_2 = tmp; end
code[x_, y_] := If[LessEqual[N[(N[(1.0 - N[(1.0 / N[(x * 9.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(y / N[(3.0 * N[Sqrt[x], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], -200.0], N[(-0.1111111111111111 / x), $MachinePrecision], 1.0]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;\left(1 - \frac{1}{x \cdot 9}\right) - \frac{y}{3 \cdot \sqrt{x}} \leq -200:\\
\;\;\;\;\frac{-0.1111111111111111}{x}\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\end{array}
if (-.f64 (-.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) (*.f64 x #s(literal 9 binary64)))) (/.f64 y (*.f64 #s(literal 3 binary64) (sqrt.f64 x)))) < -200Initial program 99.6%
Taylor expanded in y around 0
lower--.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6462.6
Applied rewrites62.6%
Taylor expanded in x around 0
lift-/.f6462.3
Applied rewrites62.3%
if -200 < (-.f64 (-.f64 #s(literal 1 binary64) (/.f64 #s(literal 1 binary64) (*.f64 x #s(literal 9 binary64)))) (/.f64 y (*.f64 #s(literal 3 binary64) (sqrt.f64 x)))) Initial program 99.8%
Taylor expanded in y around 0
lower--.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6463.0
Applied rewrites63.0%
Taylor expanded in x around inf
Applied rewrites62.2%
(FPCore (x y) :precision binary64 1.0)
double code(double x, double y) {
return 1.0;
}
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(x, y)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
code = 1.0d0
end function
public static double code(double x, double y) {
return 1.0;
}
def code(x, y): return 1.0
function code(x, y) return 1.0 end
function tmp = code(x, y) tmp = 1.0; end
code[x_, y_] := 1.0
\begin{array}{l}
\\
1
\end{array}
Initial program 99.7%
Taylor expanded in y around 0
lower--.f64N/A
associate-*r/N/A
metadata-evalN/A
lower-/.f6462.8
Applied rewrites62.8%
Taylor expanded in x around inf
Applied rewrites31.6%
herbie shell --seed 2025101
(FPCore (x y)
:name "Numeric.SpecFunctions:invIncompleteGamma from math-functions-0.1.5.2, D"
:precision binary64
(- (- 1.0 (/ 1.0 (* x 9.0))) (/ y (* 3.0 (sqrt x)))))