
(FPCore (x y z)
:precision binary64
(/
(*
(- x 2.0)
(+
(*
(+ (* (+ (* (+ (* x 4.16438922228) 78.6994924154) x) 137.519416416) x) y)
x)
z))
(+
(* (+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894) x)
47.066876606)))double code(double x, double y, double z) {
return ((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606);
}
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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = ((x - 2.0d0) * ((((((((x * 4.16438922228d0) + 78.6994924154d0) * x) + 137.519416416d0) * x) + y) * x) + z)) / (((((((x + 43.3400022514d0) * x) + 263.505074721d0) * x) + 313.399215894d0) * x) + 47.066876606d0)
end function
public static double code(double x, double y, double z) {
return ((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606);
}
def code(x, y, z): return ((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)
function code(x, y, z) return Float64(Float64(Float64(x - 2.0) * Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / Float64(Float64(Float64(Float64(Float64(Float64(Float64(x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) end
function tmp = code(x, y, z) tmp = ((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606); end
code[x_, y_, z_] := N[(N[(N[(x - 2.0), $MachinePrecision] * N[(N[(N[(N[(N[(N[(N[(N[(x * 4.16438922228), $MachinePrecision] + 78.6994924154), $MachinePrecision] * x), $MachinePrecision] + 137.519416416), $MachinePrecision] * x), $MachinePrecision] + y), $MachinePrecision] * x), $MachinePrecision] + z), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(N[(N[(N[(x + 43.3400022514), $MachinePrecision] * x), $MachinePrecision] + 263.505074721), $MachinePrecision] * x), $MachinePrecision] + 313.399215894), $MachinePrecision] * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision]
\frac{\left(x - 2\right) \cdot \left(\left(\left(\left(x \cdot 4.16438922228 + 78.6994924154\right) \cdot x + 137.519416416\right) \cdot x + y\right) \cdot x + z\right)}{\left(\left(\left(x + 43.3400022514\right) \cdot x + 263.505074721\right) \cdot x + 313.399215894\right) \cdot x + 47.066876606}
Herbie found 32 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y z)
:precision binary64
(/
(*
(- x 2.0)
(+
(*
(+ (* (+ (* (+ (* x 4.16438922228) 78.6994924154) x) 137.519416416) x) y)
x)
z))
(+
(* (+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894) x)
47.066876606)))double code(double x, double y, double z) {
return ((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606);
}
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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = ((x - 2.0d0) * ((((((((x * 4.16438922228d0) + 78.6994924154d0) * x) + 137.519416416d0) * x) + y) * x) + z)) / (((((((x + 43.3400022514d0) * x) + 263.505074721d0) * x) + 313.399215894d0) * x) + 47.066876606d0)
end function
public static double code(double x, double y, double z) {
return ((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606);
}
def code(x, y, z): return ((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)
function code(x, y, z) return Float64(Float64(Float64(x - 2.0) * Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / Float64(Float64(Float64(Float64(Float64(Float64(Float64(x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) end
function tmp = code(x, y, z) tmp = ((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606); end
code[x_, y_, z_] := N[(N[(N[(x - 2.0), $MachinePrecision] * N[(N[(N[(N[(N[(N[(N[(N[(x * 4.16438922228), $MachinePrecision] + 78.6994924154), $MachinePrecision] * x), $MachinePrecision] + 137.519416416), $MachinePrecision] * x), $MachinePrecision] + y), $MachinePrecision] * x), $MachinePrecision] + z), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(N[(N[(N[(x + 43.3400022514), $MachinePrecision] * x), $MachinePrecision] + 263.505074721), $MachinePrecision] * x), $MachinePrecision] + 313.399215894), $MachinePrecision] * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision]
\frac{\left(x - 2\right) \cdot \left(\left(\left(\left(x \cdot 4.16438922228 + 78.6994924154\right) \cdot x + 137.519416416\right) \cdot x + y\right) \cdot x + z\right)}{\left(\left(\left(x + 43.3400022514\right) \cdot x + 263.505074721\right) \cdot x + 313.399215894\right) \cdot x + 47.066876606}
(FPCore (x y z)
:precision binary64
(let* ((t_0
(fma
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x
47.066876606)))
(if (<=
(/
(*
(- x 2.0)
(+
(*
(+
(*
(+ (* (+ (* x 4.16438922228) 78.6994924154) x) 137.519416416)
x)
y)
x)
z))
(+
(*
(+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894)
x)
47.066876606))
2e+255)
(fma
(fma
(fma
(* (+ 1.0 (/ (* x 4.16438922228) 78.6994924154)) 78.6994924154)
x
137.519416416)
x
y)
(/ (* (- x 2.0) x) t_0)
(* (- x 2.0) (/ z t_0)))
(*
-1.0
(*
x
(-
(*
-1.0
(/
(-
(*
-1.0
(/
(- (* -1.0 (/ (- y 130977.50649958357) x)) 3655.1204654076414)
x))
110.1139242984811)
x))
4.16438922228))))))double code(double x, double y, double z) {
double t_0 = fma(fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606);
double tmp;
if ((((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) <= 2e+255) {
tmp = fma(fma(fma(((1.0 + ((x * 4.16438922228) / 78.6994924154)) * 78.6994924154), x, 137.519416416), x, y), (((x - 2.0) * x) / t_0), ((x - 2.0) * (z / t_0)));
} else {
tmp = -1.0 * (x * ((-1.0 * (((-1.0 * (((-1.0 * ((y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228));
}
return tmp;
}
function code(x, y, z) t_0 = fma(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606) tmp = 0.0 if (Float64(Float64(Float64(x - 2.0) * Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / Float64(Float64(Float64(Float64(Float64(Float64(Float64(x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) <= 2e+255) tmp = fma(fma(fma(Float64(Float64(1.0 + Float64(Float64(x * 4.16438922228) / 78.6994924154)) * 78.6994924154), x, 137.519416416), x, y), Float64(Float64(Float64(x - 2.0) * x) / t_0), Float64(Float64(x - 2.0) * Float64(z / t_0))); else tmp = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228))); end return tmp end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision]}, If[LessEqual[N[(N[(N[(x - 2.0), $MachinePrecision] * N[(N[(N[(N[(N[(N[(N[(N[(x * 4.16438922228), $MachinePrecision] + 78.6994924154), $MachinePrecision] * x), $MachinePrecision] + 137.519416416), $MachinePrecision] * x), $MachinePrecision] + y), $MachinePrecision] * x), $MachinePrecision] + z), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(N[(N[(N[(x + 43.3400022514), $MachinePrecision] * x), $MachinePrecision] + 263.505074721), $MachinePrecision] * x), $MachinePrecision] + 313.399215894), $MachinePrecision] * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], 2e+255], N[(N[(N[(N[(N[(1.0 + N[(N[(x * 4.16438922228), $MachinePrecision] / 78.6994924154), $MachinePrecision]), $MachinePrecision] * 78.6994924154), $MachinePrecision] * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * N[(N[(N[(x - 2.0), $MachinePrecision] * x), $MachinePrecision] / t$95$0), $MachinePrecision] + N[(N[(x - 2.0), $MachinePrecision] * N[(z / t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(y - 130977.50649958357), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 3655.1204654076414), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
t_0 := \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right), x, 47.066876606\right)\\
\mathbf{if}\;\frac{\left(x - 2\right) \cdot \left(\left(\left(\left(x \cdot 4.16438922228 + 78.6994924154\right) \cdot x + 137.519416416\right) \cdot x + y\right) \cdot x + z\right)}{\left(\left(\left(x + 43.3400022514\right) \cdot x + 263.505074721\right) \cdot x + 313.399215894\right) \cdot x + 47.066876606} \leq 2 \cdot 10^{+255}:\\
\;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\left(1 + \frac{x \cdot 4.16438922228}{78.6994924154}\right) \cdot 78.6994924154, x, 137.519416416\right), x, y\right), \frac{\left(x - 2\right) \cdot x}{t\_0}, \left(x - 2\right) \cdot \frac{z}{t\_0}\right)\\
\mathbf{else}:\\
\;\;\;\;-1 \cdot \left(x \cdot \left(-1 \cdot \frac{-1 \cdot \frac{-1 \cdot \frac{y - 130977.50649958357}{x} - 3655.1204654076414}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\end{array}
if (/.f64 (*.f64 (-.f64 x #s(literal 2 binary64)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 x #s(literal 104109730557/25000000000 binary64)) #s(literal 393497462077/5000000000 binary64)) x) #s(literal 4297481763/31250000 binary64)) x) y) x) z)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 x #s(literal 216700011257/5000000000 binary64)) x) #s(literal 263505074721/1000000000 binary64)) x) #s(literal 156699607947/500000000 binary64)) x) #s(literal 23533438303/500000000 binary64))) < 1.99999999999999998e255Initial program 57.4%
Applied rewrites61.2%
lift-fma.f64N/A
*-commutativeN/A
lift-*.f64N/A
+-commutativeN/A
sum-to-multN/A
lower-unsound-*.f64N/A
lower-unsound-+.f64N/A
lower-unsound-/.f6461.2%
Applied rewrites61.2%
if 1.99999999999999998e255 < (/.f64 (*.f64 (-.f64 x #s(literal 2 binary64)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 x #s(literal 104109730557/25000000000 binary64)) #s(literal 393497462077/5000000000 binary64)) x) #s(literal 4297481763/31250000 binary64)) x) y) x) z)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 x #s(literal 216700011257/5000000000 binary64)) x) #s(literal 263505074721/1000000000 binary64)) x) #s(literal 156699607947/500000000 binary64)) x) #s(literal 23533438303/500000000 binary64))) Initial program 57.4%
Applied rewrites61.2%
Taylor expanded in x around -inf
Applied rewrites49.1%
(FPCore (x y z)
:precision binary64
(let* ((t_0
(fma
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x
47.066876606)))
(if (<=
(/
(*
(- x 2.0)
(+
(*
(+
(*
(+ (* (+ (* x 4.16438922228) 78.6994924154) x) 137.519416416)
x)
y)
x)
z))
(+
(*
(+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894)
x)
47.066876606))
2e+255)
(fma
(fma (fma (fma 4.16438922228 x 78.6994924154) x 137.519416416) x y)
(/ (* (- x 2.0) x) t_0)
(* (- x 2.0) (/ z t_0)))
(*
-1.0
(*
x
(-
(*
-1.0
(/
(-
(*
-1.0
(/
(- (* -1.0 (/ (- y 130977.50649958357) x)) 3655.1204654076414)
x))
110.1139242984811)
x))
4.16438922228))))))double code(double x, double y, double z) {
double t_0 = fma(fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606);
double tmp;
if ((((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) <= 2e+255) {
tmp = fma(fma(fma(fma(4.16438922228, x, 78.6994924154), x, 137.519416416), x, y), (((x - 2.0) * x) / t_0), ((x - 2.0) * (z / t_0)));
} else {
tmp = -1.0 * (x * ((-1.0 * (((-1.0 * (((-1.0 * ((y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228));
}
return tmp;
}
function code(x, y, z) t_0 = fma(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606) tmp = 0.0 if (Float64(Float64(Float64(x - 2.0) * Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / Float64(Float64(Float64(Float64(Float64(Float64(Float64(x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) <= 2e+255) tmp = fma(fma(fma(fma(4.16438922228, x, 78.6994924154), x, 137.519416416), x, y), Float64(Float64(Float64(x - 2.0) * x) / t_0), Float64(Float64(x - 2.0) * Float64(z / t_0))); else tmp = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228))); end return tmp end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision]}, If[LessEqual[N[(N[(N[(x - 2.0), $MachinePrecision] * N[(N[(N[(N[(N[(N[(N[(N[(x * 4.16438922228), $MachinePrecision] + 78.6994924154), $MachinePrecision] * x), $MachinePrecision] + 137.519416416), $MachinePrecision] * x), $MachinePrecision] + y), $MachinePrecision] * x), $MachinePrecision] + z), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(N[(N[(N[(x + 43.3400022514), $MachinePrecision] * x), $MachinePrecision] + 263.505074721), $MachinePrecision] * x), $MachinePrecision] + 313.399215894), $MachinePrecision] * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], 2e+255], N[(N[(N[(N[(4.16438922228 * x + 78.6994924154), $MachinePrecision] * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * N[(N[(N[(x - 2.0), $MachinePrecision] * x), $MachinePrecision] / t$95$0), $MachinePrecision] + N[(N[(x - 2.0), $MachinePrecision] * N[(z / t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(y - 130977.50649958357), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 3655.1204654076414), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
t_0 := \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right), x, 47.066876606\right)\\
\mathbf{if}\;\frac{\left(x - 2\right) \cdot \left(\left(\left(\left(x \cdot 4.16438922228 + 78.6994924154\right) \cdot x + 137.519416416\right) \cdot x + y\right) \cdot x + z\right)}{\left(\left(\left(x + 43.3400022514\right) \cdot x + 263.505074721\right) \cdot x + 313.399215894\right) \cdot x + 47.066876606} \leq 2 \cdot 10^{+255}:\\
\;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(4.16438922228, x, 78.6994924154\right), x, 137.519416416\right), x, y\right), \frac{\left(x - 2\right) \cdot x}{t\_0}, \left(x - 2\right) \cdot \frac{z}{t\_0}\right)\\
\mathbf{else}:\\
\;\;\;\;-1 \cdot \left(x \cdot \left(-1 \cdot \frac{-1 \cdot \frac{-1 \cdot \frac{y - 130977.50649958357}{x} - 3655.1204654076414}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\end{array}
if (/.f64 (*.f64 (-.f64 x #s(literal 2 binary64)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 x #s(literal 104109730557/25000000000 binary64)) #s(literal 393497462077/5000000000 binary64)) x) #s(literal 4297481763/31250000 binary64)) x) y) x) z)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 x #s(literal 216700011257/5000000000 binary64)) x) #s(literal 263505074721/1000000000 binary64)) x) #s(literal 156699607947/500000000 binary64)) x) #s(literal 23533438303/500000000 binary64))) < 1.99999999999999998e255Initial program 57.4%
Applied rewrites61.2%
if 1.99999999999999998e255 < (/.f64 (*.f64 (-.f64 x #s(literal 2 binary64)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 x #s(literal 104109730557/25000000000 binary64)) #s(literal 393497462077/5000000000 binary64)) x) #s(literal 4297481763/31250000 binary64)) x) y) x) z)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 x #s(literal 216700011257/5000000000 binary64)) x) #s(literal 263505074721/1000000000 binary64)) x) #s(literal 156699607947/500000000 binary64)) x) #s(literal 23533438303/500000000 binary64))) Initial program 57.4%
Applied rewrites61.2%
Taylor expanded in x around -inf
Applied rewrites49.1%
(FPCore (x y z)
:precision binary64
(let* ((t_0
(fma
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x
47.066876606)))
(if (<=
(/
(*
(- x 2.0)
(+
(*
(+
(*
(+ (* (+ (* x 4.16438922228) 78.6994924154) x) 137.519416416)
x)
y)
x)
z))
(+
(*
(+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894)
x)
47.066876606))
2e+255)
(fma
z
(/ (- x 2.0) t_0)
(*
(- x 2.0)
(*
x
(/
(fma (fma (fma 4.16438922228 x 78.6994924154) x 137.519416416) x y)
t_0))))
(*
-1.0
(*
x
(-
(*
-1.0
(/
(-
(*
-1.0
(/
(- (* -1.0 (/ (- y 130977.50649958357) x)) 3655.1204654076414)
x))
110.1139242984811)
x))
4.16438922228))))))double code(double x, double y, double z) {
double t_0 = fma(fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606);
double tmp;
if ((((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) <= 2e+255) {
tmp = fma(z, ((x - 2.0) / t_0), ((x - 2.0) * (x * (fma(fma(fma(4.16438922228, x, 78.6994924154), x, 137.519416416), x, y) / t_0))));
} else {
tmp = -1.0 * (x * ((-1.0 * (((-1.0 * (((-1.0 * ((y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228));
}
return tmp;
}
function code(x, y, z) t_0 = fma(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606) tmp = 0.0 if (Float64(Float64(Float64(x - 2.0) * Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / Float64(Float64(Float64(Float64(Float64(Float64(Float64(x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) <= 2e+255) tmp = fma(z, Float64(Float64(x - 2.0) / t_0), Float64(Float64(x - 2.0) * Float64(x * Float64(fma(fma(fma(4.16438922228, x, 78.6994924154), x, 137.519416416), x, y) / t_0)))); else tmp = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228))); end return tmp end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision]}, If[LessEqual[N[(N[(N[(x - 2.0), $MachinePrecision] * N[(N[(N[(N[(N[(N[(N[(N[(x * 4.16438922228), $MachinePrecision] + 78.6994924154), $MachinePrecision] * x), $MachinePrecision] + 137.519416416), $MachinePrecision] * x), $MachinePrecision] + y), $MachinePrecision] * x), $MachinePrecision] + z), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(N[(N[(N[(x + 43.3400022514), $MachinePrecision] * x), $MachinePrecision] + 263.505074721), $MachinePrecision] * x), $MachinePrecision] + 313.399215894), $MachinePrecision] * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], 2e+255], N[(z * N[(N[(x - 2.0), $MachinePrecision] / t$95$0), $MachinePrecision] + N[(N[(x - 2.0), $MachinePrecision] * N[(x * N[(N[(N[(N[(4.16438922228 * x + 78.6994924154), $MachinePrecision] * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] / t$95$0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(y - 130977.50649958357), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 3655.1204654076414), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
t_0 := \mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right), x, 47.066876606\right)\\
\mathbf{if}\;\frac{\left(x - 2\right) \cdot \left(\left(\left(\left(x \cdot 4.16438922228 + 78.6994924154\right) \cdot x + 137.519416416\right) \cdot x + y\right) \cdot x + z\right)}{\left(\left(\left(x + 43.3400022514\right) \cdot x + 263.505074721\right) \cdot x + 313.399215894\right) \cdot x + 47.066876606} \leq 2 \cdot 10^{+255}:\\
\;\;\;\;\mathsf{fma}\left(z, \frac{x - 2}{t\_0}, \left(x - 2\right) \cdot \left(x \cdot \frac{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(4.16438922228, x, 78.6994924154\right), x, 137.519416416\right), x, y\right)}{t\_0}\right)\right)\\
\mathbf{else}:\\
\;\;\;\;-1 \cdot \left(x \cdot \left(-1 \cdot \frac{-1 \cdot \frac{-1 \cdot \frac{y - 130977.50649958357}{x} - 3655.1204654076414}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\end{array}
if (/.f64 (*.f64 (-.f64 x #s(literal 2 binary64)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 x #s(literal 104109730557/25000000000 binary64)) #s(literal 393497462077/5000000000 binary64)) x) #s(literal 4297481763/31250000 binary64)) x) y) x) z)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 x #s(literal 216700011257/5000000000 binary64)) x) #s(literal 263505074721/1000000000 binary64)) x) #s(literal 156699607947/500000000 binary64)) x) #s(literal 23533438303/500000000 binary64))) < 1.99999999999999998e255Initial program 57.4%
Applied rewrites61.0%
if 1.99999999999999998e255 < (/.f64 (*.f64 (-.f64 x #s(literal 2 binary64)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 x #s(literal 104109730557/25000000000 binary64)) #s(literal 393497462077/5000000000 binary64)) x) #s(literal 4297481763/31250000 binary64)) x) y) x) z)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 x #s(literal 216700011257/5000000000 binary64)) x) #s(literal 263505074721/1000000000 binary64)) x) #s(literal 156699607947/500000000 binary64)) x) #s(literal 23533438303/500000000 binary64))) Initial program 57.4%
Applied rewrites61.2%
Taylor expanded in x around -inf
Applied rewrites49.1%
(FPCore (x y z)
:precision binary64
(if (<=
(/
(*
(- x 2.0)
(+
(*
(+
(* (+ (* (+ (* x 4.16438922228) 78.6994924154) x) 137.519416416) x)
y)
x)
z))
(+
(*
(+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894)
x)
47.066876606))
2e+255)
(*
(fma
(fma (fma (fma x 4.16438922228 78.6994924154) x 137.519416416) x y)
x
z)
(/
1.0
(/
(fma
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x
47.066876606)
(- x 2.0))))
(*
-1.0
(*
x
(-
(*
-1.0
(/
(-
(*
-1.0
(/ (- (* -1.0 (/ (- y 130977.50649958357) x)) 3655.1204654076414) x))
110.1139242984811)
x))
4.16438922228)))))double code(double x, double y, double z) {
double tmp;
if ((((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) <= 2e+255) {
tmp = fma(fma(fma(fma(x, 4.16438922228, 78.6994924154), x, 137.519416416), x, y), x, z) * (1.0 / (fma(fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606) / (x - 2.0)));
} else {
tmp = -1.0 * (x * ((-1.0 * (((-1.0 * (((-1.0 * ((y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228));
}
return tmp;
}
function code(x, y, z) tmp = 0.0 if (Float64(Float64(Float64(x - 2.0) * Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / Float64(Float64(Float64(Float64(Float64(Float64(Float64(x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) <= 2e+255) tmp = Float64(fma(fma(fma(fma(x, 4.16438922228, 78.6994924154), x, 137.519416416), x, y), x, z) * Float64(1.0 / Float64(fma(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606) / Float64(x - 2.0)))); else tmp = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228))); end return tmp end
code[x_, y_, z_] := If[LessEqual[N[(N[(N[(x - 2.0), $MachinePrecision] * N[(N[(N[(N[(N[(N[(N[(N[(x * 4.16438922228), $MachinePrecision] + 78.6994924154), $MachinePrecision] * x), $MachinePrecision] + 137.519416416), $MachinePrecision] * x), $MachinePrecision] + y), $MachinePrecision] * x), $MachinePrecision] + z), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(N[(N[(N[(x + 43.3400022514), $MachinePrecision] * x), $MachinePrecision] + 263.505074721), $MachinePrecision] * x), $MachinePrecision] + 313.399215894), $MachinePrecision] * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], 2e+255], N[(N[(N[(N[(N[(x * 4.16438922228 + 78.6994924154), $MachinePrecision] * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] * N[(1.0 / N[(N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision] / N[(x - 2.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(y - 130977.50649958357), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 3655.1204654076414), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\mathbf{if}\;\frac{\left(x - 2\right) \cdot \left(\left(\left(\left(x \cdot 4.16438922228 + 78.6994924154\right) \cdot x + 137.519416416\right) \cdot x + y\right) \cdot x + z\right)}{\left(\left(\left(x + 43.3400022514\right) \cdot x + 263.505074721\right) \cdot x + 313.399215894\right) \cdot x + 47.066876606} \leq 2 \cdot 10^{+255}:\\
\;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x, 4.16438922228, 78.6994924154\right), x, 137.519416416\right), x, y\right), x, z\right) \cdot \frac{1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right), x, 47.066876606\right)}{x - 2}}\\
\mathbf{else}:\\
\;\;\;\;-1 \cdot \left(x \cdot \left(-1 \cdot \frac{-1 \cdot \frac{-1 \cdot \frac{y - 130977.50649958357}{x} - 3655.1204654076414}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\end{array}
if (/.f64 (*.f64 (-.f64 x #s(literal 2 binary64)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 x #s(literal 104109730557/25000000000 binary64)) #s(literal 393497462077/5000000000 binary64)) x) #s(literal 4297481763/31250000 binary64)) x) y) x) z)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 x #s(literal 216700011257/5000000000 binary64)) x) #s(literal 263505074721/1000000000 binary64)) x) #s(literal 156699607947/500000000 binary64)) x) #s(literal 23533438303/500000000 binary64))) < 1.99999999999999998e255Initial program 57.4%
Applied rewrites61.2%
Applied rewrites60.2%
lift-*.f64N/A
lift-/.f64N/A
mult-flip-revN/A
div-flipN/A
lower-unsound-/.f64N/A
lower-unsound-/.f6460.2%
Applied rewrites60.2%
if 1.99999999999999998e255 < (/.f64 (*.f64 (-.f64 x #s(literal 2 binary64)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 x #s(literal 104109730557/25000000000 binary64)) #s(literal 393497462077/5000000000 binary64)) x) #s(literal 4297481763/31250000 binary64)) x) y) x) z)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 x #s(literal 216700011257/5000000000 binary64)) x) #s(literal 263505074721/1000000000 binary64)) x) #s(literal 156699607947/500000000 binary64)) x) #s(literal 23533438303/500000000 binary64))) Initial program 57.4%
Applied rewrites61.2%
Taylor expanded in x around -inf
Applied rewrites49.1%
(FPCore (x y z)
:precision binary64
(if (<=
(/
(*
(- x 2.0)
(+
(*
(+
(* (+ (* (+ (* x 4.16438922228) 78.6994924154) x) 137.519416416) x)
y)
x)
z))
(+
(*
(+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894)
x)
47.066876606))
2e+255)
(*
(fma
(fma (fma (fma x 4.16438922228 78.6994924154) x 137.519416416) x y)
x
z)
(/
(- 2.0 x)
(-
-47.066876606
(* (fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894) x))))
(*
-1.0
(*
x
(-
(*
-1.0
(/
(-
(*
-1.0
(/ (- (* -1.0 (/ (- y 130977.50649958357) x)) 3655.1204654076414) x))
110.1139242984811)
x))
4.16438922228)))))double code(double x, double y, double z) {
double tmp;
if ((((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) <= 2e+255) {
tmp = fma(fma(fma(fma(x, 4.16438922228, 78.6994924154), x, 137.519416416), x, y), x, z) * ((2.0 - x) / (-47.066876606 - (fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894) * x)));
} else {
tmp = -1.0 * (x * ((-1.0 * (((-1.0 * (((-1.0 * ((y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228));
}
return tmp;
}
function code(x, y, z) tmp = 0.0 if (Float64(Float64(Float64(x - 2.0) * Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / Float64(Float64(Float64(Float64(Float64(Float64(Float64(x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) <= 2e+255) tmp = Float64(fma(fma(fma(fma(x, 4.16438922228, 78.6994924154), x, 137.519416416), x, y), x, z) * Float64(Float64(2.0 - x) / Float64(-47.066876606 - Float64(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894) * x)))); else tmp = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228))); end return tmp end
code[x_, y_, z_] := If[LessEqual[N[(N[(N[(x - 2.0), $MachinePrecision] * N[(N[(N[(N[(N[(N[(N[(N[(x * 4.16438922228), $MachinePrecision] + 78.6994924154), $MachinePrecision] * x), $MachinePrecision] + 137.519416416), $MachinePrecision] * x), $MachinePrecision] + y), $MachinePrecision] * x), $MachinePrecision] + z), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(N[(N[(N[(x + 43.3400022514), $MachinePrecision] * x), $MachinePrecision] + 263.505074721), $MachinePrecision] * x), $MachinePrecision] + 313.399215894), $MachinePrecision] * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], 2e+255], N[(N[(N[(N[(N[(x * 4.16438922228 + 78.6994924154), $MachinePrecision] * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] * N[(N[(2.0 - x), $MachinePrecision] / N[(-47.066876606 - N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(y - 130977.50649958357), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 3655.1204654076414), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\mathbf{if}\;\frac{\left(x - 2\right) \cdot \left(\left(\left(\left(x \cdot 4.16438922228 + 78.6994924154\right) \cdot x + 137.519416416\right) \cdot x + y\right) \cdot x + z\right)}{\left(\left(\left(x + 43.3400022514\right) \cdot x + 263.505074721\right) \cdot x + 313.399215894\right) \cdot x + 47.066876606} \leq 2 \cdot 10^{+255}:\\
\;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x, 4.16438922228, 78.6994924154\right), x, 137.519416416\right), x, y\right), x, z\right) \cdot \frac{2 - x}{-47.066876606 - \mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right) \cdot x}\\
\mathbf{else}:\\
\;\;\;\;-1 \cdot \left(x \cdot \left(-1 \cdot \frac{-1 \cdot \frac{-1 \cdot \frac{y - 130977.50649958357}{x} - 3655.1204654076414}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\end{array}
if (/.f64 (*.f64 (-.f64 x #s(literal 2 binary64)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 x #s(literal 104109730557/25000000000 binary64)) #s(literal 393497462077/5000000000 binary64)) x) #s(literal 4297481763/31250000 binary64)) x) y) x) z)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 x #s(literal 216700011257/5000000000 binary64)) x) #s(literal 263505074721/1000000000 binary64)) x) #s(literal 156699607947/500000000 binary64)) x) #s(literal 23533438303/500000000 binary64))) < 1.99999999999999998e255Initial program 57.4%
Applied rewrites61.2%
Applied rewrites60.2%
lift-*.f64N/A
lift-/.f64N/A
mult-flip-revN/A
frac-2negN/A
lower-/.f64N/A
lift--.f64N/A
sub-negate-revN/A
lower--.f64N/A
lift-fma.f64N/A
add-flipN/A
lift-fma.f64N/A
lift-fma.f64N/A
lift--.f64N/A
metadata-evalN/A
add-flipN/A
sub-negateN/A
Applied rewrites60.2%
if 1.99999999999999998e255 < (/.f64 (*.f64 (-.f64 x #s(literal 2 binary64)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 x #s(literal 104109730557/25000000000 binary64)) #s(literal 393497462077/5000000000 binary64)) x) #s(literal 4297481763/31250000 binary64)) x) y) x) z)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 x #s(literal 216700011257/5000000000 binary64)) x) #s(literal 263505074721/1000000000 binary64)) x) #s(literal 156699607947/500000000 binary64)) x) #s(literal 23533438303/500000000 binary64))) Initial program 57.4%
Applied rewrites61.2%
Taylor expanded in x around -inf
Applied rewrites49.1%
(FPCore (x y z)
:precision binary64
(if (<=
(/
(*
(- x 2.0)
(+
(*
(+
(* (+ (* (+ (* x 4.16438922228) 78.6994924154) x) 137.519416416) x)
y)
x)
z))
(+
(*
(+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894)
x)
47.066876606))
2e+255)
(*
(fma
(fma (fma (fma 4.16438922228 x 78.6994924154) x 137.519416416) x y)
x
z)
(/
(- x 2.0)
(fma
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x
47.066876606)))
(*
-1.0
(*
x
(-
(*
-1.0
(/
(-
(*
-1.0
(/ (- (* -1.0 (/ (- y 130977.50649958357) x)) 3655.1204654076414) x))
110.1139242984811)
x))
4.16438922228)))))double code(double x, double y, double z) {
double tmp;
if ((((x - 2.0) * ((((((((x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) <= 2e+255) {
tmp = fma(fma(fma(fma(4.16438922228, x, 78.6994924154), x, 137.519416416), x, y), x, z) * ((x - 2.0) / fma(fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606));
} else {
tmp = -1.0 * (x * ((-1.0 * (((-1.0 * (((-1.0 * ((y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228));
}
return tmp;
}
function code(x, y, z) tmp = 0.0 if (Float64(Float64(Float64(x - 2.0) * Float64(Float64(Float64(Float64(Float64(Float64(Float64(Float64(x * 4.16438922228) + 78.6994924154) * x) + 137.519416416) * x) + y) * x) + z)) / Float64(Float64(Float64(Float64(Float64(Float64(Float64(x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)) <= 2e+255) tmp = Float64(fma(fma(fma(fma(4.16438922228, x, 78.6994924154), x, 137.519416416), x, y), x, z) * Float64(Float64(x - 2.0) / fma(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606))); else tmp = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228))); end return tmp end
code[x_, y_, z_] := If[LessEqual[N[(N[(N[(x - 2.0), $MachinePrecision] * N[(N[(N[(N[(N[(N[(N[(N[(x * 4.16438922228), $MachinePrecision] + 78.6994924154), $MachinePrecision] * x), $MachinePrecision] + 137.519416416), $MachinePrecision] * x), $MachinePrecision] + y), $MachinePrecision] * x), $MachinePrecision] + z), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(N[(N[(N[(x + 43.3400022514), $MachinePrecision] * x), $MachinePrecision] + 263.505074721), $MachinePrecision] * x), $MachinePrecision] + 313.399215894), $MachinePrecision] * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], 2e+255], N[(N[(N[(N[(N[(4.16438922228 * x + 78.6994924154), $MachinePrecision] * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] * N[(N[(x - 2.0), $MachinePrecision] / N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(y - 130977.50649958357), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 3655.1204654076414), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\mathbf{if}\;\frac{\left(x - 2\right) \cdot \left(\left(\left(\left(x \cdot 4.16438922228 + 78.6994924154\right) \cdot x + 137.519416416\right) \cdot x + y\right) \cdot x + z\right)}{\left(\left(\left(x + 43.3400022514\right) \cdot x + 263.505074721\right) \cdot x + 313.399215894\right) \cdot x + 47.066876606} \leq 2 \cdot 10^{+255}:\\
\;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(4.16438922228, x, 78.6994924154\right), x, 137.519416416\right), x, y\right), x, z\right) \cdot \frac{x - 2}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right), x, 47.066876606\right)}\\
\mathbf{else}:\\
\;\;\;\;-1 \cdot \left(x \cdot \left(-1 \cdot \frac{-1 \cdot \frac{-1 \cdot \frac{y - 130977.50649958357}{x} - 3655.1204654076414}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\end{array}
if (/.f64 (*.f64 (-.f64 x #s(literal 2 binary64)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 x #s(literal 104109730557/25000000000 binary64)) #s(literal 393497462077/5000000000 binary64)) x) #s(literal 4297481763/31250000 binary64)) x) y) x) z)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 x #s(literal 216700011257/5000000000 binary64)) x) #s(literal 263505074721/1000000000 binary64)) x) #s(literal 156699607947/500000000 binary64)) x) #s(literal 23533438303/500000000 binary64))) < 1.99999999999999998e255Initial program 57.4%
Applied rewrites60.2%
if 1.99999999999999998e255 < (/.f64 (*.f64 (-.f64 x #s(literal 2 binary64)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 x #s(literal 104109730557/25000000000 binary64)) #s(literal 393497462077/5000000000 binary64)) x) #s(literal 4297481763/31250000 binary64)) x) y) x) z)) (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 (*.f64 (+.f64 x #s(literal 216700011257/5000000000 binary64)) x) #s(literal 263505074721/1000000000 binary64)) x) #s(literal 156699607947/500000000 binary64)) x) #s(literal 23533438303/500000000 binary64))) Initial program 57.4%
Applied rewrites61.2%
Taylor expanded in x around -inf
Applied rewrites49.1%
(FPCore (x y z)
:precision binary64
(let* ((t_0
(*
(+
4.16438922228
(*
-1.0
(/
(+
101.7851458539211
(*
-1.0
(/
(+
3451.550173699799
(* -1.0 (/ (+ 124074.40615218398 (* -1.0 y)) x)))
x)))
x)))
(- x 2.0))))
(if (<= x -660000.0)
t_0
(if (<= x 650000000000.0)
(*
(/
(fma (fma (fma 78.6994924154 x 137.519416416) x y) x z)
(fma
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x
47.066876606))
(- (- x 1.0) 1.0))
t_0))))double code(double x, double y, double z) {
double t_0 = (4.16438922228 + (-1.0 * ((101.7851458539211 + (-1.0 * ((3451.550173699799 + (-1.0 * ((124074.40615218398 + (-1.0 * y)) / x))) / x))) / x))) * (x - 2.0);
double tmp;
if (x <= -660000.0) {
tmp = t_0;
} else if (x <= 650000000000.0) {
tmp = (fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606)) * ((x - 1.0) - 1.0);
} else {
tmp = t_0;
}
return tmp;
}
function code(x, y, z) t_0 = Float64(Float64(4.16438922228 + Float64(-1.0 * Float64(Float64(101.7851458539211 + Float64(-1.0 * Float64(Float64(3451.550173699799 + Float64(-1.0 * Float64(Float64(124074.40615218398 + Float64(-1.0 * y)) / x))) / x))) / x))) * Float64(x - 2.0)) tmp = 0.0 if (x <= -660000.0) tmp = t_0; elseif (x <= 650000000000.0) tmp = Float64(Float64(fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606)) * Float64(Float64(x - 1.0) - 1.0)); else tmp = t_0; end return tmp end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(4.16438922228 + N[(-1.0 * N[(N[(101.7851458539211 + N[(-1.0 * N[(N[(3451.550173699799 + N[(-1.0 * N[(N[(124074.40615218398 + N[(-1.0 * y), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -660000.0], t$95$0, If[LessEqual[x, 650000000000.0], N[(N[(N[(N[(N[(78.6994924154 * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] / N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision]), $MachinePrecision] * N[(N[(x - 1.0), $MachinePrecision] - 1.0), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
t_0 := \left(4.16438922228 + -1 \cdot \frac{101.7851458539211 + -1 \cdot \frac{3451.550173699799 + -1 \cdot \frac{124074.40615218398 + -1 \cdot y}{x}}{x}}{x}\right) \cdot \left(x - 2\right)\\
\mathbf{if}\;x \leq -660000:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 650000000000:\\
\;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(78.6994924154, x, 137.519416416\right), x, y\right), x, z\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right), x, 47.066876606\right)} \cdot \left(\left(x - 1\right) - 1\right)\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -6.6e5 or 6.5e11 < x Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around -inf
lower-+.f64N/A
lower-*.f64N/A
lower-/.f64N/A
Applied rewrites49.3%
if -6.6e5 < x < 6.5e11Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
lift--.f64N/A
metadata-evalN/A
associate--r+N/A
lower--.f64N/A
lower--.f6453.5%
Applied rewrites53.5%
(FPCore (x y z)
:precision binary64
(let* ((t_0
(*
(+
4.16438922228
(*
-1.0
(/
(+
101.7851458539211
(*
-1.0
(/
(+
3451.550173699799
(* -1.0 (/ (+ 124074.40615218398 (* -1.0 y)) x)))
x)))
x)))
(- x 2.0))))
(if (<= x -660000.0)
t_0
(if (<= x 650000000000.0)
(*
(/
(fma (fma (fma 78.6994924154 x 137.519416416) x y) x z)
(-
(*
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x)
-47.066876606))
(- x 2.0))
t_0))))double code(double x, double y, double z) {
double t_0 = (4.16438922228 + (-1.0 * ((101.7851458539211 + (-1.0 * ((3451.550173699799 + (-1.0 * ((124074.40615218398 + (-1.0 * y)) / x))) / x))) / x))) * (x - 2.0);
double tmp;
if (x <= -660000.0) {
tmp = t_0;
} else if (x <= 650000000000.0) {
tmp = (fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / ((fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894) * x) - -47.066876606)) * (x - 2.0);
} else {
tmp = t_0;
}
return tmp;
}
function code(x, y, z) t_0 = Float64(Float64(4.16438922228 + Float64(-1.0 * Float64(Float64(101.7851458539211 + Float64(-1.0 * Float64(Float64(3451.550173699799 + Float64(-1.0 * Float64(Float64(124074.40615218398 + Float64(-1.0 * y)) / x))) / x))) / x))) * Float64(x - 2.0)) tmp = 0.0 if (x <= -660000.0) tmp = t_0; elseif (x <= 650000000000.0) tmp = Float64(Float64(fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / Float64(Float64(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894) * x) - -47.066876606)) * Float64(x - 2.0)); else tmp = t_0; end return tmp end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(4.16438922228 + N[(-1.0 * N[(N[(101.7851458539211 + N[(-1.0 * N[(N[(3451.550173699799 + N[(-1.0 * N[(N[(124074.40615218398 + N[(-1.0 * y), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -660000.0], t$95$0, If[LessEqual[x, 650000000000.0], N[(N[(N[(N[(N[(78.6994924154 * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] / N[(N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x), $MachinePrecision] - -47.066876606), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
t_0 := \left(4.16438922228 + -1 \cdot \frac{101.7851458539211 + -1 \cdot \frac{3451.550173699799 + -1 \cdot \frac{124074.40615218398 + -1 \cdot y}{x}}{x}}{x}\right) \cdot \left(x - 2\right)\\
\mathbf{if}\;x \leq -660000:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 650000000000:\\
\;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(78.6994924154, x, 137.519416416\right), x, y\right), x, z\right)}{\mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right) \cdot x - -47.066876606} \cdot \left(x - 2\right)\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -6.6e5 or 6.5e11 < x Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around -inf
lower-+.f64N/A
lower-*.f64N/A
lower-/.f64N/A
Applied rewrites49.3%
if -6.6e5 < x < 6.5e11Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
lift-fma.f64N/A
add-flipN/A
lift-fma.f64N/A
lift-fma.f64N/A
lift--.f64N/A
metadata-evalN/A
add-flipN/A
lower--.f64N/A
add-flipN/A
metadata-evalN/A
lift--.f64N/A
lift-fma.f64N/A
lift-fma.f64N/A
lower-*.f64N/A
metadata-eval53.5%
Applied rewrites53.5%
(FPCore (x y z)
:precision binary64
(let* ((t_0
(*
(+
4.16438922228
(*
-1.0
(/
(+
101.7851458539211
(*
-1.0
(/
(+
3451.550173699799
(* -1.0 (/ (+ 124074.40615218398 (* -1.0 y)) x)))
x)))
x)))
(- x 2.0))))
(if (<= x -660000.0)
t_0
(if (<= x 650000000000.0)
(/
(* (fma (fma (fma 78.6994924154 x 137.519416416) x y) x z) (- x 2.0))
(fma
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x
47.066876606))
t_0))))double code(double x, double y, double z) {
double t_0 = (4.16438922228 + (-1.0 * ((101.7851458539211 + (-1.0 * ((3451.550173699799 + (-1.0 * ((124074.40615218398 + (-1.0 * y)) / x))) / x))) / x))) * (x - 2.0);
double tmp;
if (x <= -660000.0) {
tmp = t_0;
} else if (x <= 650000000000.0) {
tmp = (fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) * (x - 2.0)) / fma(fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606);
} else {
tmp = t_0;
}
return tmp;
}
function code(x, y, z) t_0 = Float64(Float64(4.16438922228 + Float64(-1.0 * Float64(Float64(101.7851458539211 + Float64(-1.0 * Float64(Float64(3451.550173699799 + Float64(-1.0 * Float64(Float64(124074.40615218398 + Float64(-1.0 * y)) / x))) / x))) / x))) * Float64(x - 2.0)) tmp = 0.0 if (x <= -660000.0) tmp = t_0; elseif (x <= 650000000000.0) tmp = Float64(Float64(fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) * Float64(x - 2.0)) / fma(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606)); else tmp = t_0; end return tmp end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(4.16438922228 + N[(-1.0 * N[(N[(101.7851458539211 + N[(-1.0 * N[(N[(3451.550173699799 + N[(-1.0 * N[(N[(124074.40615218398 + N[(-1.0 * y), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -660000.0], t$95$0, If[LessEqual[x, 650000000000.0], N[(N[(N[(N[(N[(78.6994924154 * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
t_0 := \left(4.16438922228 + -1 \cdot \frac{101.7851458539211 + -1 \cdot \frac{3451.550173699799 + -1 \cdot \frac{124074.40615218398 + -1 \cdot y}{x}}{x}}{x}\right) \cdot \left(x - 2\right)\\
\mathbf{if}\;x \leq -660000:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 650000000000:\\
\;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(78.6994924154, x, 137.519416416\right), x, y\right), x, z\right) \cdot \left(x - 2\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right), x, 47.066876606\right)}\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -6.6e5 or 6.5e11 < x Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around -inf
lower-+.f64N/A
lower-*.f64N/A
lower-/.f64N/A
Applied rewrites49.3%
if -6.6e5 < x < 6.5e11Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
lift-*.f64N/A
Applied rewrites52.5%
(FPCore (x y z)
:precision binary64
(let* ((t_0
(*
(+
4.16438922228
(*
-1.0
(/
(+
101.7851458539211
(*
-1.0
(/
(+
3451.550173699799
(* -1.0 (/ (+ 124074.40615218398 (* -1.0 y)) x)))
x)))
x)))
(- x 2.0))))
(if (<= x -660000.0)
t_0
(if (<= x 650000000000.0)
(*
(/
(fma (fma (fma 78.6994924154 x 137.519416416) x y) x z)
(fma
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x
47.066876606))
(- x 2.0))
t_0))))double code(double x, double y, double z) {
double t_0 = (4.16438922228 + (-1.0 * ((101.7851458539211 + (-1.0 * ((3451.550173699799 + (-1.0 * ((124074.40615218398 + (-1.0 * y)) / x))) / x))) / x))) * (x - 2.0);
double tmp;
if (x <= -660000.0) {
tmp = t_0;
} else if (x <= 650000000000.0) {
tmp = (fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606)) * (x - 2.0);
} else {
tmp = t_0;
}
return tmp;
}
function code(x, y, z) t_0 = Float64(Float64(4.16438922228 + Float64(-1.0 * Float64(Float64(101.7851458539211 + Float64(-1.0 * Float64(Float64(3451.550173699799 + Float64(-1.0 * Float64(Float64(124074.40615218398 + Float64(-1.0 * y)) / x))) / x))) / x))) * Float64(x - 2.0)) tmp = 0.0 if (x <= -660000.0) tmp = t_0; elseif (x <= 650000000000.0) tmp = Float64(Float64(fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606)) * Float64(x - 2.0)); else tmp = t_0; end return tmp end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(4.16438922228 + N[(-1.0 * N[(N[(101.7851458539211 + N[(-1.0 * N[(N[(3451.550173699799 + N[(-1.0 * N[(N[(124074.40615218398 + N[(-1.0 * y), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -660000.0], t$95$0, If[LessEqual[x, 650000000000.0], N[(N[(N[(N[(N[(78.6994924154 * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] / N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
t_0 := \left(4.16438922228 + -1 \cdot \frac{101.7851458539211 + -1 \cdot \frac{3451.550173699799 + -1 \cdot \frac{124074.40615218398 + -1 \cdot y}{x}}{x}}{x}\right) \cdot \left(x - 2\right)\\
\mathbf{if}\;x \leq -660000:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 650000000000:\\
\;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(78.6994924154, x, 137.519416416\right), x, y\right), x, z\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right), x, 47.066876606\right)} \cdot \left(x - 2\right)\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -6.6e5 or 6.5e11 < x Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around -inf
lower-+.f64N/A
lower-*.f64N/A
lower-/.f64N/A
Applied rewrites49.3%
if -6.6e5 < x < 6.5e11Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
(FPCore (x y z)
:precision binary64
(let* ((t_0
(*
(+
4.16438922228
(*
-1.0
(/
(+
101.7851458539211
(*
-1.0
(/
(+
3451.550173699799
(* -1.0 (/ (+ 124074.40615218398 (* -1.0 y)) x)))
x)))
x)))
(- x 2.0))))
(if (<= x -8.0)
t_0
(if (<= x 1.75e-7)
(*
(/
(fma (fma (fma 78.6994924154 x 137.519416416) x y) x z)
(fma
(fma (fma 43.3400022514 x 263.505074721) x 313.399215894)
x
47.066876606))
(- x 2.0))
(if (<= x 540000000000.0)
(/
(* (- 2.0 x) (fma y x z))
(-
-47.066876606
(*
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x)))
t_0)))))double code(double x, double y, double z) {
double t_0 = (4.16438922228 + (-1.0 * ((101.7851458539211 + (-1.0 * ((3451.550173699799 + (-1.0 * ((124074.40615218398 + (-1.0 * y)) / x))) / x))) / x))) * (x - 2.0);
double tmp;
if (x <= -8.0) {
tmp = t_0;
} else if (x <= 1.75e-7) {
tmp = (fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(fma(fma(43.3400022514, x, 263.505074721), x, 313.399215894), x, 47.066876606)) * (x - 2.0);
} else if (x <= 540000000000.0) {
tmp = ((2.0 - x) * fma(y, x, z)) / (-47.066876606 - (fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894) * x));
} else {
tmp = t_0;
}
return tmp;
}
function code(x, y, z) t_0 = Float64(Float64(4.16438922228 + Float64(-1.0 * Float64(Float64(101.7851458539211 + Float64(-1.0 * Float64(Float64(3451.550173699799 + Float64(-1.0 * Float64(Float64(124074.40615218398 + Float64(-1.0 * y)) / x))) / x))) / x))) * Float64(x - 2.0)) tmp = 0.0 if (x <= -8.0) tmp = t_0; elseif (x <= 1.75e-7) tmp = Float64(Float64(fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(fma(fma(43.3400022514, x, 263.505074721), x, 313.399215894), x, 47.066876606)) * Float64(x - 2.0)); elseif (x <= 540000000000.0) tmp = Float64(Float64(Float64(2.0 - x) * fma(y, x, z)) / Float64(-47.066876606 - Float64(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894) * x))); else tmp = t_0; end return tmp end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(4.16438922228 + N[(-1.0 * N[(N[(101.7851458539211 + N[(-1.0 * N[(N[(3451.550173699799 + N[(-1.0 * N[(N[(124074.40615218398 + N[(-1.0 * y), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -8.0], t$95$0, If[LessEqual[x, 1.75e-7], N[(N[(N[(N[(N[(78.6994924154 * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] / N[(N[(N[(43.3400022514 * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 540000000000.0], N[(N[(N[(2.0 - x), $MachinePrecision] * N[(y * x + z), $MachinePrecision]), $MachinePrecision] / N[(-47.066876606 - N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$0]]]]
\begin{array}{l}
t_0 := \left(4.16438922228 + -1 \cdot \frac{101.7851458539211 + -1 \cdot \frac{3451.550173699799 + -1 \cdot \frac{124074.40615218398 + -1 \cdot y}{x}}{x}}{x}\right) \cdot \left(x - 2\right)\\
\mathbf{if}\;x \leq -8:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 1.75 \cdot 10^{-7}:\\
\;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(78.6994924154, x, 137.519416416\right), x, y\right), x, z\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(43.3400022514, x, 263.505074721\right), x, 313.399215894\right), x, 47.066876606\right)} \cdot \left(x - 2\right)\\
\mathbf{elif}\;x \leq 540000000000:\\
\;\;\;\;\frac{\left(2 - x\right) \cdot \mathsf{fma}\left(y, x, z\right)}{-47.066876606 - \mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right) \cdot x}\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -8 or 5.4e11 < x Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around -inf
lower-+.f64N/A
lower-*.f64N/A
lower-/.f64N/A
Applied rewrites49.3%
if -8 < x < 1.74999999999999992e-7Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around 0
Applied rewrites50.7%
if 1.74999999999999992e-7 < x < 5.4e11Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites50.0%
Applied rewrites50.0%
(FPCore (x y z)
:precision binary64
(let* ((t_0
(*
(+
4.16438922228
(*
-1.0
(/
(+
101.7851458539211
(*
-1.0
(/
(+
3451.550173699799
(* -1.0 (/ (+ 124074.40615218398 (* -1.0 y)) x)))
x)))
x)))
(- x 2.0))))
(if (<= x -125.0)
t_0
(if (<= x 1.75e-7)
(*
(/
(fma (fma (fma 78.6994924154 x 137.519416416) x y) x z)
(fma (fma 263.505074721 x 313.399215894) x 47.066876606))
(- x 2.0))
(if (<= x 540000000000.0)
(/
(* (- 2.0 x) (fma y x z))
(-
-47.066876606
(*
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x)))
t_0)))))double code(double x, double y, double z) {
double t_0 = (4.16438922228 + (-1.0 * ((101.7851458539211 + (-1.0 * ((3451.550173699799 + (-1.0 * ((124074.40615218398 + (-1.0 * y)) / x))) / x))) / x))) * (x - 2.0);
double tmp;
if (x <= -125.0) {
tmp = t_0;
} else if (x <= 1.75e-7) {
tmp = (fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(fma(263.505074721, x, 313.399215894), x, 47.066876606)) * (x - 2.0);
} else if (x <= 540000000000.0) {
tmp = ((2.0 - x) * fma(y, x, z)) / (-47.066876606 - (fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894) * x));
} else {
tmp = t_0;
}
return tmp;
}
function code(x, y, z) t_0 = Float64(Float64(4.16438922228 + Float64(-1.0 * Float64(Float64(101.7851458539211 + Float64(-1.0 * Float64(Float64(3451.550173699799 + Float64(-1.0 * Float64(Float64(124074.40615218398 + Float64(-1.0 * y)) / x))) / x))) / x))) * Float64(x - 2.0)) tmp = 0.0 if (x <= -125.0) tmp = t_0; elseif (x <= 1.75e-7) tmp = Float64(Float64(fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(fma(263.505074721, x, 313.399215894), x, 47.066876606)) * Float64(x - 2.0)); elseif (x <= 540000000000.0) tmp = Float64(Float64(Float64(2.0 - x) * fma(y, x, z)) / Float64(-47.066876606 - Float64(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894) * x))); else tmp = t_0; end return tmp end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(4.16438922228 + N[(-1.0 * N[(N[(101.7851458539211 + N[(-1.0 * N[(N[(3451.550173699799 + N[(-1.0 * N[(N[(124074.40615218398 + N[(-1.0 * y), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -125.0], t$95$0, If[LessEqual[x, 1.75e-7], N[(N[(N[(N[(N[(78.6994924154 * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] / N[(N[(263.505074721 * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 540000000000.0], N[(N[(N[(2.0 - x), $MachinePrecision] * N[(y * x + z), $MachinePrecision]), $MachinePrecision] / N[(-47.066876606 - N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$0]]]]
\begin{array}{l}
t_0 := \left(4.16438922228 + -1 \cdot \frac{101.7851458539211 + -1 \cdot \frac{3451.550173699799 + -1 \cdot \frac{124074.40615218398 + -1 \cdot y}{x}}{x}}{x}\right) \cdot \left(x - 2\right)\\
\mathbf{if}\;x \leq -125:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 1.75 \cdot 10^{-7}:\\
\;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(78.6994924154, x, 137.519416416\right), x, y\right), x, z\right)}{\mathsf{fma}\left(\mathsf{fma}\left(263.505074721, x, 313.399215894\right), x, 47.066876606\right)} \cdot \left(x - 2\right)\\
\mathbf{elif}\;x \leq 540000000000:\\
\;\;\;\;\frac{\left(2 - x\right) \cdot \mathsf{fma}\left(y, x, z\right)}{-47.066876606 - \mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right) \cdot x}\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -125 or 5.4e11 < x Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around -inf
lower-+.f64N/A
lower-*.f64N/A
lower-/.f64N/A
Applied rewrites49.3%
if -125 < x < 1.74999999999999992e-7Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around 0
Applied rewrites49.6%
if 1.74999999999999992e-7 < x < 5.4e11Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites50.0%
Applied rewrites50.0%
(FPCore (x y z)
:precision binary64
(let* ((t_0
(*
-1.0
(*
x
(-
(*
-1.0
(/
(-
(*
-1.0
(/
(- (* -1.0 (/ (- y 130977.50649958357) x)) 3655.1204654076414)
x))
110.1139242984811)
x))
4.16438922228)))))
(if (<= x -125.0)
t_0
(if (<= x 1.75e-7)
(*
(/
(fma (fma (fma 78.6994924154 x 137.519416416) x y) x z)
(fma (fma 263.505074721 x 313.399215894) x 47.066876606))
(- x 2.0))
(if (<= x 540000000000.0)
(/
(* (- 2.0 x) (fma y x z))
(-
-47.066876606
(*
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x)))
t_0)))))double code(double x, double y, double z) {
double t_0 = -1.0 * (x * ((-1.0 * (((-1.0 * (((-1.0 * ((y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228));
double tmp;
if (x <= -125.0) {
tmp = t_0;
} else if (x <= 1.75e-7) {
tmp = (fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(fma(263.505074721, x, 313.399215894), x, 47.066876606)) * (x - 2.0);
} else if (x <= 540000000000.0) {
tmp = ((2.0 - x) * fma(y, x, z)) / (-47.066876606 - (fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894) * x));
} else {
tmp = t_0;
}
return tmp;
}
function code(x, y, z) t_0 = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(Float64(-1.0 * Float64(Float64(y - 130977.50649958357) / x)) - 3655.1204654076414) / x)) - 110.1139242984811) / x)) - 4.16438922228))) tmp = 0.0 if (x <= -125.0) tmp = t_0; elseif (x <= 1.75e-7) tmp = Float64(Float64(fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(fma(263.505074721, x, 313.399215894), x, 47.066876606)) * Float64(x - 2.0)); elseif (x <= 540000000000.0) tmp = Float64(Float64(Float64(2.0 - x) * fma(y, x, z)) / Float64(-47.066876606 - Float64(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894) * x))); else tmp = t_0; end return tmp end
code[x_, y_, z_] := Block[{t$95$0 = N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(N[(-1.0 * N[(N[(y - 130977.50649958357), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 3655.1204654076414), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -125.0], t$95$0, If[LessEqual[x, 1.75e-7], N[(N[(N[(N[(N[(78.6994924154 * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] / N[(N[(263.505074721 * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 540000000000.0], N[(N[(N[(2.0 - x), $MachinePrecision] * N[(y * x + z), $MachinePrecision]), $MachinePrecision] / N[(-47.066876606 - N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], t$95$0]]]]
\begin{array}{l}
t_0 := -1 \cdot \left(x \cdot \left(-1 \cdot \frac{-1 \cdot \frac{-1 \cdot \frac{y - 130977.50649958357}{x} - 3655.1204654076414}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\mathbf{if}\;x \leq -125:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 1.75 \cdot 10^{-7}:\\
\;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(78.6994924154, x, 137.519416416\right), x, y\right), x, z\right)}{\mathsf{fma}\left(\mathsf{fma}\left(263.505074721, x, 313.399215894\right), x, 47.066876606\right)} \cdot \left(x - 2\right)\\
\mathbf{elif}\;x \leq 540000000000:\\
\;\;\;\;\frac{\left(2 - x\right) \cdot \mathsf{fma}\left(y, x, z\right)}{-47.066876606 - \mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right) \cdot x}\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -125 or 5.4e11 < x Initial program 57.4%
Applied rewrites61.2%
Taylor expanded in x around -inf
Applied rewrites49.1%
if -125 < x < 1.74999999999999992e-7Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around 0
Applied rewrites49.6%
if 1.74999999999999992e-7 < x < 5.4e11Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites50.0%
Applied rewrites50.0%
(FPCore (x y z)
:precision binary64
(let* ((t_0
(*
(+
4.16438922228
(*
-1.0
(/
(+
101.7851458539211
(*
-1.0
(/
(+
3451.550173699799
(* -1.0 (/ (+ 124074.40615218398 (* -1.0 y)) x)))
x)))
x)))
(- x 2.0))))
(if (<= x -136000.0)
t_0
(if (<= x 510000000000.0)
(/
(* (- x 2.0) (+ (* (+ (* 137.519416416 x) y) x) z))
(+
(*
(+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894)
x)
47.066876606))
t_0))))double code(double x, double y, double z) {
double t_0 = (4.16438922228 + (-1.0 * ((101.7851458539211 + (-1.0 * ((3451.550173699799 + (-1.0 * ((124074.40615218398 + (-1.0 * y)) / x))) / x))) / x))) * (x - 2.0);
double tmp;
if (x <= -136000.0) {
tmp = t_0;
} else if (x <= 510000000000.0) {
tmp = ((x - 2.0) * ((((137.519416416 * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606);
} 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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: t_0
real(8) :: tmp
t_0 = (4.16438922228d0 + ((-1.0d0) * ((101.7851458539211d0 + ((-1.0d0) * ((3451.550173699799d0 + ((-1.0d0) * ((124074.40615218398d0 + ((-1.0d0) * y)) / x))) / x))) / x))) * (x - 2.0d0)
if (x <= (-136000.0d0)) then
tmp = t_0
else if (x <= 510000000000.0d0) then
tmp = ((x - 2.0d0) * ((((137.519416416d0 * x) + y) * x) + z)) / (((((((x + 43.3400022514d0) * x) + 263.505074721d0) * x) + 313.399215894d0) * x) + 47.066876606d0)
else
tmp = t_0
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = (4.16438922228 + (-1.0 * ((101.7851458539211 + (-1.0 * ((3451.550173699799 + (-1.0 * ((124074.40615218398 + (-1.0 * y)) / x))) / x))) / x))) * (x - 2.0);
double tmp;
if (x <= -136000.0) {
tmp = t_0;
} else if (x <= 510000000000.0) {
tmp = ((x - 2.0) * ((((137.519416416 * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606);
} else {
tmp = t_0;
}
return tmp;
}
def code(x, y, z): t_0 = (4.16438922228 + (-1.0 * ((101.7851458539211 + (-1.0 * ((3451.550173699799 + (-1.0 * ((124074.40615218398 + (-1.0 * y)) / x))) / x))) / x))) * (x - 2.0) tmp = 0 if x <= -136000.0: tmp = t_0 elif x <= 510000000000.0: tmp = ((x - 2.0) * ((((137.519416416 * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606) else: tmp = t_0 return tmp
function code(x, y, z) t_0 = Float64(Float64(4.16438922228 + Float64(-1.0 * Float64(Float64(101.7851458539211 + Float64(-1.0 * Float64(Float64(3451.550173699799 + Float64(-1.0 * Float64(Float64(124074.40615218398 + Float64(-1.0 * y)) / x))) / x))) / x))) * Float64(x - 2.0)) tmp = 0.0 if (x <= -136000.0) tmp = t_0; elseif (x <= 510000000000.0) tmp = Float64(Float64(Float64(x - 2.0) * Float64(Float64(Float64(Float64(137.519416416 * x) + y) * x) + z)) / Float64(Float64(Float64(Float64(Float64(Float64(Float64(x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)); else tmp = t_0; end return tmp end
function tmp_2 = code(x, y, z) t_0 = (4.16438922228 + (-1.0 * ((101.7851458539211 + (-1.0 * ((3451.550173699799 + (-1.0 * ((124074.40615218398 + (-1.0 * y)) / x))) / x))) / x))) * (x - 2.0); tmp = 0.0; if (x <= -136000.0) tmp = t_0; elseif (x <= 510000000000.0) tmp = ((x - 2.0) * ((((137.519416416 * x) + y) * x) + z)) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606); else tmp = t_0; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(4.16438922228 + N[(-1.0 * N[(N[(101.7851458539211 + N[(-1.0 * N[(N[(3451.550173699799 + N[(-1.0 * N[(N[(124074.40615218398 + N[(-1.0 * y), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -136000.0], t$95$0, If[LessEqual[x, 510000000000.0], N[(N[(N[(x - 2.0), $MachinePrecision] * N[(N[(N[(N[(137.519416416 * x), $MachinePrecision] + y), $MachinePrecision] * x), $MachinePrecision] + z), $MachinePrecision]), $MachinePrecision] / N[(N[(N[(N[(N[(N[(N[(x + 43.3400022514), $MachinePrecision] * x), $MachinePrecision] + 263.505074721), $MachinePrecision] * x), $MachinePrecision] + 313.399215894), $MachinePrecision] * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
t_0 := \left(4.16438922228 + -1 \cdot \frac{101.7851458539211 + -1 \cdot \frac{3451.550173699799 + -1 \cdot \frac{124074.40615218398 + -1 \cdot y}{x}}{x}}{x}\right) \cdot \left(x - 2\right)\\
\mathbf{if}\;x \leq -136000:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 510000000000:\\
\;\;\;\;\frac{\left(x - 2\right) \cdot \left(\left(137.519416416 \cdot x + y\right) \cdot x + z\right)}{\left(\left(\left(x + 43.3400022514\right) \cdot x + 263.505074721\right) \cdot x + 313.399215894\right) \cdot x + 47.066876606}\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -136000 or 5.1e11 < x Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around -inf
lower-+.f64N/A
lower-*.f64N/A
lower-/.f64N/A
Applied rewrites49.3%
if -136000 < x < 5.1e11Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.4%
(FPCore (x y z)
:precision binary64
(let* ((t_0 (fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)))
(if (<= x -7.5e+47)
(* x 4.16438922228)
(if (<= x -0.013)
(* (fma y x z) (/ (- x 2.0) (fma t_0 x 47.066876606)))
(if (<= x 1.75e-7)
(*
(/
(fma (fma (fma 78.6994924154 x 137.519416416) x y) x z)
(fma (fma 263.505074721 x 313.399215894) x 47.066876606))
(- x 2.0))
(if (<= x 1.9e+20)
(/ (* (- 2.0 x) (fma y x z)) (- -47.066876606 (* t_0 x)))
(* x 4.16438922228)))))))double code(double x, double y, double z) {
double t_0 = fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894);
double tmp;
if (x <= -7.5e+47) {
tmp = x * 4.16438922228;
} else if (x <= -0.013) {
tmp = fma(y, x, z) * ((x - 2.0) / fma(t_0, x, 47.066876606));
} else if (x <= 1.75e-7) {
tmp = (fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(fma(263.505074721, x, 313.399215894), x, 47.066876606)) * (x - 2.0);
} else if (x <= 1.9e+20) {
tmp = ((2.0 - x) * fma(y, x, z)) / (-47.066876606 - (t_0 * x));
} else {
tmp = x * 4.16438922228;
}
return tmp;
}
function code(x, y, z) t_0 = fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894) tmp = 0.0 if (x <= -7.5e+47) tmp = Float64(x * 4.16438922228); elseif (x <= -0.013) tmp = Float64(fma(y, x, z) * Float64(Float64(x - 2.0) / fma(t_0, x, 47.066876606))); elseif (x <= 1.75e-7) tmp = Float64(Float64(fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(fma(263.505074721, x, 313.399215894), x, 47.066876606)) * Float64(x - 2.0)); elseif (x <= 1.9e+20) tmp = Float64(Float64(Float64(2.0 - x) * fma(y, x, z)) / Float64(-47.066876606 - Float64(t_0 * x))); else tmp = Float64(x * 4.16438922228); end return tmp end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision]}, If[LessEqual[x, -7.5e+47], N[(x * 4.16438922228), $MachinePrecision], If[LessEqual[x, -0.013], N[(N[(y * x + z), $MachinePrecision] * N[(N[(x - 2.0), $MachinePrecision] / N[(t$95$0 * x + 47.066876606), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 1.75e-7], N[(N[(N[(N[(N[(78.6994924154 * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] / N[(N[(263.505074721 * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 1.9e+20], N[(N[(N[(2.0 - x), $MachinePrecision] * N[(y * x + z), $MachinePrecision]), $MachinePrecision] / N[(-47.066876606 - N[(t$95$0 * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(x * 4.16438922228), $MachinePrecision]]]]]]
\begin{array}{l}
t_0 := \mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right)\\
\mathbf{if}\;x \leq -7.5 \cdot 10^{+47}:\\
\;\;\;\;x \cdot 4.16438922228\\
\mathbf{elif}\;x \leq -0.013:\\
\;\;\;\;\mathsf{fma}\left(y, x, z\right) \cdot \frac{x - 2}{\mathsf{fma}\left(t\_0, x, 47.066876606\right)}\\
\mathbf{elif}\;x \leq 1.75 \cdot 10^{-7}:\\
\;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(78.6994924154, x, 137.519416416\right), x, y\right), x, z\right)}{\mathsf{fma}\left(\mathsf{fma}\left(263.505074721, x, 313.399215894\right), x, 47.066876606\right)} \cdot \left(x - 2\right)\\
\mathbf{elif}\;x \leq 1.9 \cdot 10^{+20}:\\
\;\;\;\;\frac{\left(2 - x\right) \cdot \mathsf{fma}\left(y, x, z\right)}{-47.066876606 - t\_0 \cdot x}\\
\mathbf{else}:\\
\;\;\;\;x \cdot 4.16438922228\\
\end{array}
if x < -7.4999999999999999e47 or 1.9e20 < x Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around inf
Applied rewrites46.4%
if -7.4999999999999999e47 < x < -0.0129999999999999994Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites50.0%
lift-/.f64N/A
lift-*.f64N/A
*-commutativeN/A
lift-+.f64N/A
lift-*.f64N/A
lower-fma.f64N/A
Applied rewrites51.2%
if -0.0129999999999999994 < x < 1.74999999999999992e-7Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around 0
Applied rewrites49.6%
if 1.74999999999999992e-7 < x < 1.9e20Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites50.0%
Applied rewrites50.0%
(FPCore (x y z)
:precision binary64
(if (<= x -7.5e+47)
(* x 4.16438922228)
(if (<= x 1.8e+24)
(*
(/
(fma y x z)
(fma
(fma (fma (- x -43.3400022514) x 263.505074721) x 313.399215894)
x
47.066876606))
(- x 2.0))
(* x 4.16438922228))))double code(double x, double y, double z) {
double tmp;
if (x <= -7.5e+47) {
tmp = x * 4.16438922228;
} else if (x <= 1.8e+24) {
tmp = (fma(y, x, z) / fma(fma(fma((x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606)) * (x - 2.0);
} else {
tmp = x * 4.16438922228;
}
return tmp;
}
function code(x, y, z) tmp = 0.0 if (x <= -7.5e+47) tmp = Float64(x * 4.16438922228); elseif (x <= 1.8e+24) tmp = Float64(Float64(fma(y, x, z) / fma(fma(fma(Float64(x - -43.3400022514), x, 263.505074721), x, 313.399215894), x, 47.066876606)) * Float64(x - 2.0)); else tmp = Float64(x * 4.16438922228); end return tmp end
code[x_, y_, z_] := If[LessEqual[x, -7.5e+47], N[(x * 4.16438922228), $MachinePrecision], If[LessEqual[x, 1.8e+24], N[(N[(N[(y * x + z), $MachinePrecision] / N[(N[(N[(N[(x - -43.3400022514), $MachinePrecision] * x + 263.505074721), $MachinePrecision] * x + 313.399215894), $MachinePrecision] * x + 47.066876606), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision], N[(x * 4.16438922228), $MachinePrecision]]]
\begin{array}{l}
\mathbf{if}\;x \leq -7.5 \cdot 10^{+47}:\\
\;\;\;\;x \cdot 4.16438922228\\
\mathbf{elif}\;x \leq 1.8 \cdot 10^{+24}:\\
\;\;\;\;\frac{\mathsf{fma}\left(y, x, z\right)}{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x - -43.3400022514, x, 263.505074721\right), x, 313.399215894\right), x, 47.066876606\right)} \cdot \left(x - 2\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 4.16438922228\\
\end{array}
if x < -7.4999999999999999e47 or 1.79999999999999992e24 < x Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around inf
Applied rewrites46.4%
if -7.4999999999999999e47 < x < 1.79999999999999992e24Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites50.0%
lift-/.f64N/A
lift-*.f64N/A
associate-/l*N/A
*-commutativeN/A
lower-*.f64N/A
Applied rewrites51.3%
(FPCore (x y z)
:precision binary64
(if (<= x -125.0)
(*
-1.0
(*
x
(-
(* -1.0 (/ (- (* 3655.1204654076414 (/ 1.0 x)) 110.1139242984811) x))
4.16438922228)))
(if (<= x 3.2e-5)
(*
(+ z (* x (+ y (* x (+ 137.519416416 (* 78.6994924154 x))))))
(-
(* x (+ 0.3041881842569256 (* -1.787568985856513 x)))
0.0424927283095952))
(if (<= x 480000000000.0)
(/
(* (- x 2.0) z)
(+
(*
(+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894)
x)
47.066876606))
(- (* 4.16438922228 x) 110.1139242984811)))))double code(double x, double y, double z) {
double tmp;
if (x <= -125.0) {
tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228));
} else if (x <= 3.2e-5) {
tmp = (z + (x * (y + (x * (137.519416416 + (78.6994924154 * x)))))) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952);
} else if (x <= 480000000000.0) {
tmp = ((x - 2.0) * z) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606);
} else {
tmp = (4.16438922228 * x) - 110.1139242984811;
}
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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (x <= (-125.0d0)) then
tmp = (-1.0d0) * (x * (((-1.0d0) * (((3655.1204654076414d0 * (1.0d0 / x)) - 110.1139242984811d0) / x)) - 4.16438922228d0))
else if (x <= 3.2d-5) then
tmp = (z + (x * (y + (x * (137.519416416d0 + (78.6994924154d0 * x)))))) * ((x * (0.3041881842569256d0 + ((-1.787568985856513d0) * x))) - 0.0424927283095952d0)
else if (x <= 480000000000.0d0) then
tmp = ((x - 2.0d0) * z) / (((((((x + 43.3400022514d0) * x) + 263.505074721d0) * x) + 313.399215894d0) * x) + 47.066876606d0)
else
tmp = (4.16438922228d0 * x) - 110.1139242984811d0
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (x <= -125.0) {
tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228));
} else if (x <= 3.2e-5) {
tmp = (z + (x * (y + (x * (137.519416416 + (78.6994924154 * x)))))) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952);
} else if (x <= 480000000000.0) {
tmp = ((x - 2.0) * z) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606);
} else {
tmp = (4.16438922228 * x) - 110.1139242984811;
}
return tmp;
}
def code(x, y, z): tmp = 0 if x <= -125.0: tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228)) elif x <= 3.2e-5: tmp = (z + (x * (y + (x * (137.519416416 + (78.6994924154 * x)))))) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952) elif x <= 480000000000.0: tmp = ((x - 2.0) * z) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606) else: tmp = (4.16438922228 * x) - 110.1139242984811 return tmp
function code(x, y, z) tmp = 0.0 if (x <= -125.0) tmp = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(3655.1204654076414 * Float64(1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228))); elseif (x <= 3.2e-5) tmp = Float64(Float64(z + Float64(x * Float64(y + Float64(x * Float64(137.519416416 + Float64(78.6994924154 * x)))))) * Float64(Float64(x * Float64(0.3041881842569256 + Float64(-1.787568985856513 * x))) - 0.0424927283095952)); elseif (x <= 480000000000.0) tmp = Float64(Float64(Float64(x - 2.0) * z) / Float64(Float64(Float64(Float64(Float64(Float64(Float64(x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)); else tmp = Float64(Float64(4.16438922228 * x) - 110.1139242984811); end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (x <= -125.0) tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228)); elseif (x <= 3.2e-5) tmp = (z + (x * (y + (x * (137.519416416 + (78.6994924154 * x)))))) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952); elseif (x <= 480000000000.0) tmp = ((x - 2.0) * z) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606); else tmp = (4.16438922228 * x) - 110.1139242984811; end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[x, -125.0], N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(3655.1204654076414 * N[(1.0 / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 3.2e-5], N[(N[(z + N[(x * N[(y + N[(x * N[(137.519416416 + N[(78.6994924154 * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(N[(x * N[(0.3041881842569256 + N[(-1.787568985856513 * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - 0.0424927283095952), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 480000000000.0], N[(N[(N[(x - 2.0), $MachinePrecision] * z), $MachinePrecision] / N[(N[(N[(N[(N[(N[(N[(x + 43.3400022514), $MachinePrecision] * x), $MachinePrecision] + 263.505074721), $MachinePrecision] * x), $MachinePrecision] + 313.399215894), $MachinePrecision] * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], N[(N[(4.16438922228 * x), $MachinePrecision] - 110.1139242984811), $MachinePrecision]]]]
\begin{array}{l}
\mathbf{if}\;x \leq -125:\\
\;\;\;\;-1 \cdot \left(x \cdot \left(-1 \cdot \frac{3655.1204654076414 \cdot \frac{1}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\mathbf{elif}\;x \leq 3.2 \cdot 10^{-5}:\\
\;\;\;\;\left(z + x \cdot \left(y + x \cdot \left(137.519416416 + 78.6994924154 \cdot x\right)\right)\right) \cdot \left(x \cdot \left(0.3041881842569256 + -1.787568985856513 \cdot x\right) - 0.0424927283095952\right)\\
\mathbf{elif}\;x \leq 480000000000:\\
\;\;\;\;\frac{\left(x - 2\right) \cdot z}{\left(\left(\left(x + 43.3400022514\right) \cdot x + 263.505074721\right) \cdot x + 313.399215894\right) \cdot x + 47.066876606}\\
\mathbf{else}:\\
\;\;\;\;4.16438922228 \cdot x - 110.1139242984811\\
\end{array}
if x < -125Initial program 57.4%
Taylor expanded in x around -inf
lower-*.f64N/A
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.3%
Applied rewrites46.3%
if -125 < x < 3.19999999999999986e-5Initial program 57.4%
Applied rewrites61.2%
Applied rewrites60.2%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f64N/A
lower-+.f64N/A
lower-*.f6450.0%
Applied rewrites50.0%
Taylor expanded in x around 0
lower-+.f64N/A
lower-*.f64N/A
lower-+.f64N/A
lower-*.f64N/A
lower-+.f64N/A
lower-*.f6448.7%
Applied rewrites48.7%
if 3.19999999999999986e-5 < x < 4.8e11Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites36.0%
if 4.8e11 < x Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f6446.6%
Applied rewrites46.6%
(FPCore (x y z)
:precision binary64
(if (<= x -0.14)
(*
-1.0
(*
x
(-
(* -1.0 (/ (- (* 3655.1204654076414 (/ 1.0 x)) 110.1139242984811) x))
4.16438922228)))
(if (<= x 3.2e-5)
(*
(/
(fma (fma (fma 78.6994924154 x 137.519416416) x y) x z)
(fma 313.399215894 x 47.066876606))
(- x 2.0))
(if (<= x 480000000000.0)
(/
(* (- x 2.0) z)
(+
(*
(+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894)
x)
47.066876606))
(- (* 4.16438922228 x) 110.1139242984811)))))double code(double x, double y, double z) {
double tmp;
if (x <= -0.14) {
tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228));
} else if (x <= 3.2e-5) {
tmp = (fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(313.399215894, x, 47.066876606)) * (x - 2.0);
} else if (x <= 480000000000.0) {
tmp = ((x - 2.0) * z) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606);
} else {
tmp = (4.16438922228 * x) - 110.1139242984811;
}
return tmp;
}
function code(x, y, z) tmp = 0.0 if (x <= -0.14) tmp = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(3655.1204654076414 * Float64(1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228))); elseif (x <= 3.2e-5) tmp = Float64(Float64(fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / fma(313.399215894, x, 47.066876606)) * Float64(x - 2.0)); elseif (x <= 480000000000.0) tmp = Float64(Float64(Float64(x - 2.0) * z) / Float64(Float64(Float64(Float64(Float64(Float64(Float64(x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)); else tmp = Float64(Float64(4.16438922228 * x) - 110.1139242984811); end return tmp end
code[x_, y_, z_] := If[LessEqual[x, -0.14], N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(3655.1204654076414 * N[(1.0 / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 3.2e-5], N[(N[(N[(N[(N[(78.6994924154 * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] / N[(313.399215894 * x + 47.066876606), $MachinePrecision]), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 480000000000.0], N[(N[(N[(x - 2.0), $MachinePrecision] * z), $MachinePrecision] / N[(N[(N[(N[(N[(N[(N[(x + 43.3400022514), $MachinePrecision] * x), $MachinePrecision] + 263.505074721), $MachinePrecision] * x), $MachinePrecision] + 313.399215894), $MachinePrecision] * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], N[(N[(4.16438922228 * x), $MachinePrecision] - 110.1139242984811), $MachinePrecision]]]]
\begin{array}{l}
\mathbf{if}\;x \leq -0.14:\\
\;\;\;\;-1 \cdot \left(x \cdot \left(-1 \cdot \frac{3655.1204654076414 \cdot \frac{1}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\mathbf{elif}\;x \leq 3.2 \cdot 10^{-5}:\\
\;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(78.6994924154, x, 137.519416416\right), x, y\right), x, z\right)}{\mathsf{fma}\left(313.399215894, x, 47.066876606\right)} \cdot \left(x - 2\right)\\
\mathbf{elif}\;x \leq 480000000000:\\
\;\;\;\;\frac{\left(x - 2\right) \cdot z}{\left(\left(\left(x + 43.3400022514\right) \cdot x + 263.505074721\right) \cdot x + 313.399215894\right) \cdot x + 47.066876606}\\
\mathbf{else}:\\
\;\;\;\;4.16438922228 \cdot x - 110.1139242984811\\
\end{array}
if x < -0.14000000000000001Initial program 57.4%
Taylor expanded in x around -inf
lower-*.f64N/A
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.3%
Applied rewrites46.3%
if -0.14000000000000001 < x < 3.19999999999999986e-5Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around 0
Applied rewrites51.2%
if 3.19999999999999986e-5 < x < 4.8e11Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites36.0%
if 4.8e11 < x Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f6446.6%
Applied rewrites46.6%
(FPCore (x y z)
:precision binary64
(if (<= x -125.0)
(*
-1.0
(*
x
(-
(* -1.0 (/ (- (* 3655.1204654076414 (/ 1.0 x)) 110.1139242984811) x))
4.16438922228)))
(if (<= x 3.2e-5)
(*
(+ z (* x (+ y (* 137.519416416 x))))
(-
(* x (+ 0.3041881842569256 (* -1.787568985856513 x)))
0.0424927283095952))
(if (<= x 480000000000.0)
(/
(* (- x 2.0) z)
(+
(*
(+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894)
x)
47.066876606))
(- (* 4.16438922228 x) 110.1139242984811)))))double code(double x, double y, double z) {
double tmp;
if (x <= -125.0) {
tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228));
} else if (x <= 3.2e-5) {
tmp = (z + (x * (y + (137.519416416 * x)))) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952);
} else if (x <= 480000000000.0) {
tmp = ((x - 2.0) * z) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606);
} else {
tmp = (4.16438922228 * x) - 110.1139242984811;
}
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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (x <= (-125.0d0)) then
tmp = (-1.0d0) * (x * (((-1.0d0) * (((3655.1204654076414d0 * (1.0d0 / x)) - 110.1139242984811d0) / x)) - 4.16438922228d0))
else if (x <= 3.2d-5) then
tmp = (z + (x * (y + (137.519416416d0 * x)))) * ((x * (0.3041881842569256d0 + ((-1.787568985856513d0) * x))) - 0.0424927283095952d0)
else if (x <= 480000000000.0d0) then
tmp = ((x - 2.0d0) * z) / (((((((x + 43.3400022514d0) * x) + 263.505074721d0) * x) + 313.399215894d0) * x) + 47.066876606d0)
else
tmp = (4.16438922228d0 * x) - 110.1139242984811d0
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (x <= -125.0) {
tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228));
} else if (x <= 3.2e-5) {
tmp = (z + (x * (y + (137.519416416 * x)))) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952);
} else if (x <= 480000000000.0) {
tmp = ((x - 2.0) * z) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606);
} else {
tmp = (4.16438922228 * x) - 110.1139242984811;
}
return tmp;
}
def code(x, y, z): tmp = 0 if x <= -125.0: tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228)) elif x <= 3.2e-5: tmp = (z + (x * (y + (137.519416416 * x)))) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952) elif x <= 480000000000.0: tmp = ((x - 2.0) * z) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606) else: tmp = (4.16438922228 * x) - 110.1139242984811 return tmp
function code(x, y, z) tmp = 0.0 if (x <= -125.0) tmp = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(3655.1204654076414 * Float64(1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228))); elseif (x <= 3.2e-5) tmp = Float64(Float64(z + Float64(x * Float64(y + Float64(137.519416416 * x)))) * Float64(Float64(x * Float64(0.3041881842569256 + Float64(-1.787568985856513 * x))) - 0.0424927283095952)); elseif (x <= 480000000000.0) tmp = Float64(Float64(Float64(x - 2.0) * z) / Float64(Float64(Float64(Float64(Float64(Float64(Float64(x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606)); else tmp = Float64(Float64(4.16438922228 * x) - 110.1139242984811); end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (x <= -125.0) tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228)); elseif (x <= 3.2e-5) tmp = (z + (x * (y + (137.519416416 * x)))) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952); elseif (x <= 480000000000.0) tmp = ((x - 2.0) * z) / (((((((x + 43.3400022514) * x) + 263.505074721) * x) + 313.399215894) * x) + 47.066876606); else tmp = (4.16438922228 * x) - 110.1139242984811; end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[x, -125.0], N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(3655.1204654076414 * N[(1.0 / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 3.2e-5], N[(N[(z + N[(x * N[(y + N[(137.519416416 * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(N[(x * N[(0.3041881842569256 + N[(-1.787568985856513 * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - 0.0424927283095952), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 480000000000.0], N[(N[(N[(x - 2.0), $MachinePrecision] * z), $MachinePrecision] / N[(N[(N[(N[(N[(N[(N[(x + 43.3400022514), $MachinePrecision] * x), $MachinePrecision] + 263.505074721), $MachinePrecision] * x), $MachinePrecision] + 313.399215894), $MachinePrecision] * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], N[(N[(4.16438922228 * x), $MachinePrecision] - 110.1139242984811), $MachinePrecision]]]]
\begin{array}{l}
\mathbf{if}\;x \leq -125:\\
\;\;\;\;-1 \cdot \left(x \cdot \left(-1 \cdot \frac{3655.1204654076414 \cdot \frac{1}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\mathbf{elif}\;x \leq 3.2 \cdot 10^{-5}:\\
\;\;\;\;\left(z + x \cdot \left(y + 137.519416416 \cdot x\right)\right) \cdot \left(x \cdot \left(0.3041881842569256 + -1.787568985856513 \cdot x\right) - 0.0424927283095952\right)\\
\mathbf{elif}\;x \leq 480000000000:\\
\;\;\;\;\frac{\left(x - 2\right) \cdot z}{\left(\left(\left(x + 43.3400022514\right) \cdot x + 263.505074721\right) \cdot x + 313.399215894\right) \cdot x + 47.066876606}\\
\mathbf{else}:\\
\;\;\;\;4.16438922228 \cdot x - 110.1139242984811\\
\end{array}
if x < -125Initial program 57.4%
Taylor expanded in x around -inf
lower-*.f64N/A
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.3%
Applied rewrites46.3%
if -125 < x < 3.19999999999999986e-5Initial program 57.4%
Applied rewrites61.2%
Applied rewrites60.2%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f64N/A
lower-+.f64N/A
lower-*.f6450.0%
Applied rewrites50.0%
Taylor expanded in x around 0
lower-+.f64N/A
lower-*.f64N/A
lower-+.f64N/A
lower-*.f6449.8%
Applied rewrites49.8%
if 3.19999999999999986e-5 < x < 4.8e11Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites36.0%
if 4.8e11 < x Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f6446.6%
Applied rewrites46.6%
(FPCore (x y z)
:precision binary64
(if (<= x -125.0)
(*
-1.0
(*
x
(-
(* -1.0 (/ (- (* 3655.1204654076414 (/ 1.0 x)) 110.1139242984811) x))
4.16438922228)))
(if (<= x 2.6)
(*
(+ z (* x (+ y (* 137.519416416 x))))
(-
(* x (+ 0.3041881842569256 (* -1.787568985856513 x)))
0.0424927283095952))
(*
(- x 2.0)
(- 4.16438922228 (/ (- 101.7851458539211 (/ 3451.550173699799 x)) x))))))double code(double x, double y, double z) {
double tmp;
if (x <= -125.0) {
tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228));
} else if (x <= 2.6) {
tmp = (z + (x * (y + (137.519416416 * x)))) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952);
} else {
tmp = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x));
}
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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (x <= (-125.0d0)) then
tmp = (-1.0d0) * (x * (((-1.0d0) * (((3655.1204654076414d0 * (1.0d0 / x)) - 110.1139242984811d0) / x)) - 4.16438922228d0))
else if (x <= 2.6d0) then
tmp = (z + (x * (y + (137.519416416d0 * x)))) * ((x * (0.3041881842569256d0 + ((-1.787568985856513d0) * x))) - 0.0424927283095952d0)
else
tmp = (x - 2.0d0) * (4.16438922228d0 - ((101.7851458539211d0 - (3451.550173699799d0 / x)) / x))
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (x <= -125.0) {
tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228));
} else if (x <= 2.6) {
tmp = (z + (x * (y + (137.519416416 * x)))) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952);
} else {
tmp = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x));
}
return tmp;
}
def code(x, y, z): tmp = 0 if x <= -125.0: tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228)) elif x <= 2.6: tmp = (z + (x * (y + (137.519416416 * x)))) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952) else: tmp = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x)) return tmp
function code(x, y, z) tmp = 0.0 if (x <= -125.0) tmp = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(3655.1204654076414 * Float64(1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228))); elseif (x <= 2.6) tmp = Float64(Float64(z + Float64(x * Float64(y + Float64(137.519416416 * x)))) * Float64(Float64(x * Float64(0.3041881842569256 + Float64(-1.787568985856513 * x))) - 0.0424927283095952)); else tmp = Float64(Float64(x - 2.0) * Float64(4.16438922228 - Float64(Float64(101.7851458539211 - Float64(3451.550173699799 / x)) / x))); end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (x <= -125.0) tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228)); elseif (x <= 2.6) tmp = (z + (x * (y + (137.519416416 * x)))) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952); else tmp = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x)); end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[x, -125.0], N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(3655.1204654076414 * N[(1.0 / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 2.6], N[(N[(z + N[(x * N[(y + N[(137.519416416 * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] * N[(N[(x * N[(0.3041881842569256 + N[(-1.787568985856513 * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - 0.0424927283095952), $MachinePrecision]), $MachinePrecision], N[(N[(x - 2.0), $MachinePrecision] * N[(4.16438922228 - N[(N[(101.7851458539211 - N[(3451.550173699799 / x), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\mathbf{if}\;x \leq -125:\\
\;\;\;\;-1 \cdot \left(x \cdot \left(-1 \cdot \frac{3655.1204654076414 \cdot \frac{1}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\mathbf{elif}\;x \leq 2.6:\\
\;\;\;\;\left(z + x \cdot \left(y + 137.519416416 \cdot x\right)\right) \cdot \left(x \cdot \left(0.3041881842569256 + -1.787568985856513 \cdot x\right) - 0.0424927283095952\right)\\
\mathbf{else}:\\
\;\;\;\;\left(x - 2\right) \cdot \left(4.16438922228 - \frac{101.7851458539211 - \frac{3451.550173699799}{x}}{x}\right)\\
\end{array}
if x < -125Initial program 57.4%
Taylor expanded in x around -inf
lower-*.f64N/A
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.3%
Applied rewrites46.3%
if -125 < x < 2.60000000000000009Initial program 57.4%
Applied rewrites61.2%
Applied rewrites60.2%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f64N/A
lower-+.f64N/A
lower-*.f6450.0%
Applied rewrites50.0%
Taylor expanded in x around 0
lower-+.f64N/A
lower-*.f64N/A
lower-+.f64N/A
lower-*.f6449.8%
Applied rewrites49.8%
if 2.60000000000000009 < x Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around -inf
lower-+.f64N/A
lower-*.f64N/A
lower-/.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.2%
Applied rewrites46.2%
lift-*.f64N/A
*-commutativeN/A
lower-*.f6446.2%
lift-+.f64N/A
add-flipN/A
lower--.f64N/A
lift-*.f64N/A
mul-1-negN/A
Applied rewrites46.2%
(FPCore (x y z)
:precision binary64
(if (<= x -125.0)
(*
-1.0
(*
x
(-
(* -1.0 (/ (- (* 3655.1204654076414 (/ 1.0 x)) 110.1139242984811) x))
4.16438922228)))
(if (<= x 160.0)
(*
(/ (fma (fma (fma 78.6994924154 x 137.519416416) x y) x z) 47.066876606)
(- x 2.0))
(- (* 4.16438922228 x) 110.1139242984811))))double code(double x, double y, double z) {
double tmp;
if (x <= -125.0) {
tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228));
} else if (x <= 160.0) {
tmp = (fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / 47.066876606) * (x - 2.0);
} else {
tmp = (4.16438922228 * x) - 110.1139242984811;
}
return tmp;
}
function code(x, y, z) tmp = 0.0 if (x <= -125.0) tmp = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(3655.1204654076414 * Float64(1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228))); elseif (x <= 160.0) tmp = Float64(Float64(fma(fma(fma(78.6994924154, x, 137.519416416), x, y), x, z) / 47.066876606) * Float64(x - 2.0)); else tmp = Float64(Float64(4.16438922228 * x) - 110.1139242984811); end return tmp end
code[x_, y_, z_] := If[LessEqual[x, -125.0], N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(3655.1204654076414 * N[(1.0 / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 160.0], N[(N[(N[(N[(N[(78.6994924154 * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] / 47.066876606), $MachinePrecision] * N[(x - 2.0), $MachinePrecision]), $MachinePrecision], N[(N[(4.16438922228 * x), $MachinePrecision] - 110.1139242984811), $MachinePrecision]]]
\begin{array}{l}
\mathbf{if}\;x \leq -125:\\
\;\;\;\;-1 \cdot \left(x \cdot \left(-1 \cdot \frac{3655.1204654076414 \cdot \frac{1}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\mathbf{elif}\;x \leq 160:\\
\;\;\;\;\frac{\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(78.6994924154, x, 137.519416416\right), x, y\right), x, z\right)}{47.066876606} \cdot \left(x - 2\right)\\
\mathbf{else}:\\
\;\;\;\;4.16438922228 \cdot x - 110.1139242984811\\
\end{array}
if x < -125Initial program 57.4%
Taylor expanded in x around -inf
lower-*.f64N/A
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.3%
Applied rewrites46.3%
if -125 < x < 160Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around 0
Applied rewrites49.6%
if 160 < x Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f6446.6%
Applied rewrites46.6%
(FPCore (x y z)
:precision binary64
(if (<= x -125.0)
(*
-1.0
(*
x
(-
(* -1.0 (/ (- (* 3655.1204654076414 (/ 1.0 x)) 110.1139242984811) x))
4.16438922228)))
(if (<= x 3.25)
(*
(fma
(fma (fma (fma x 4.16438922228 78.6994924154) x 137.519416416) x y)
x
z)
-0.0424927283095952)
(*
(- x 2.0)
(- 4.16438922228 (/ (- 101.7851458539211 (/ 3451.550173699799 x)) x))))))double code(double x, double y, double z) {
double tmp;
if (x <= -125.0) {
tmp = -1.0 * (x * ((-1.0 * (((3655.1204654076414 * (1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228));
} else if (x <= 3.25) {
tmp = fma(fma(fma(fma(x, 4.16438922228, 78.6994924154), x, 137.519416416), x, y), x, z) * -0.0424927283095952;
} else {
tmp = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x));
}
return tmp;
}
function code(x, y, z) tmp = 0.0 if (x <= -125.0) tmp = Float64(-1.0 * Float64(x * Float64(Float64(-1.0 * Float64(Float64(Float64(3655.1204654076414 * Float64(1.0 / x)) - 110.1139242984811) / x)) - 4.16438922228))); elseif (x <= 3.25) tmp = Float64(fma(fma(fma(fma(x, 4.16438922228, 78.6994924154), x, 137.519416416), x, y), x, z) * -0.0424927283095952); else tmp = Float64(Float64(x - 2.0) * Float64(4.16438922228 - Float64(Float64(101.7851458539211 - Float64(3451.550173699799 / x)) / x))); end return tmp end
code[x_, y_, z_] := If[LessEqual[x, -125.0], N[(-1.0 * N[(x * N[(N[(-1.0 * N[(N[(N[(3655.1204654076414 * N[(1.0 / x), $MachinePrecision]), $MachinePrecision] - 110.1139242984811), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision] - 4.16438922228), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 3.25], N[(N[(N[(N[(N[(x * 4.16438922228 + 78.6994924154), $MachinePrecision] * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] * -0.0424927283095952), $MachinePrecision], N[(N[(x - 2.0), $MachinePrecision] * N[(4.16438922228 - N[(N[(101.7851458539211 - N[(3451.550173699799 / x), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\mathbf{if}\;x \leq -125:\\
\;\;\;\;-1 \cdot \left(x \cdot \left(-1 \cdot \frac{3655.1204654076414 \cdot \frac{1}{x} - 110.1139242984811}{x} - 4.16438922228\right)\right)\\
\mathbf{elif}\;x \leq 3.25:\\
\;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x, 4.16438922228, 78.6994924154\right), x, 137.519416416\right), x, y\right), x, z\right) \cdot -0.0424927283095952\\
\mathbf{else}:\\
\;\;\;\;\left(x - 2\right) \cdot \left(4.16438922228 - \frac{101.7851458539211 - \frac{3451.550173699799}{x}}{x}\right)\\
\end{array}
if x < -125Initial program 57.4%
Taylor expanded in x around -inf
lower-*.f64N/A
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.3%
Applied rewrites46.3%
if -125 < x < 3.25Initial program 57.4%
Applied rewrites61.2%
Applied rewrites60.2%
Taylor expanded in x around 0
Applied rewrites49.3%
if 3.25 < x Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around -inf
lower-+.f64N/A
lower-*.f64N/A
lower-/.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.2%
Applied rewrites46.2%
lift-*.f64N/A
*-commutativeN/A
lower-*.f6446.2%
lift-+.f64N/A
add-flipN/A
lower--.f64N/A
lift-*.f64N/A
mul-1-negN/A
Applied rewrites46.2%
(FPCore (x y z)
:precision binary64
(let* ((t_0
(*
(- x 2.0)
(-
4.16438922228
(/ (- 101.7851458539211 (/ 3451.550173699799 x)) x)))))
(if (<= x -125.0)
t_0
(if (<= x 3.25)
(*
(fma
(fma (fma (fma x 4.16438922228 78.6994924154) x 137.519416416) x y)
x
z)
-0.0424927283095952)
t_0))))double code(double x, double y, double z) {
double t_0 = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x));
double tmp;
if (x <= -125.0) {
tmp = t_0;
} else if (x <= 3.25) {
tmp = fma(fma(fma(fma(x, 4.16438922228, 78.6994924154), x, 137.519416416), x, y), x, z) * -0.0424927283095952;
} else {
tmp = t_0;
}
return tmp;
}
function code(x, y, z) t_0 = Float64(Float64(x - 2.0) * Float64(4.16438922228 - Float64(Float64(101.7851458539211 - Float64(3451.550173699799 / x)) / x))) tmp = 0.0 if (x <= -125.0) tmp = t_0; elseif (x <= 3.25) tmp = Float64(fma(fma(fma(fma(x, 4.16438922228, 78.6994924154), x, 137.519416416), x, y), x, z) * -0.0424927283095952); else tmp = t_0; end return tmp end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(x - 2.0), $MachinePrecision] * N[(4.16438922228 - N[(N[(101.7851458539211 - N[(3451.550173699799 / x), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -125.0], t$95$0, If[LessEqual[x, 3.25], N[(N[(N[(N[(N[(x * 4.16438922228 + 78.6994924154), $MachinePrecision] * x + 137.519416416), $MachinePrecision] * x + y), $MachinePrecision] * x + z), $MachinePrecision] * -0.0424927283095952), $MachinePrecision], t$95$0]]]
\begin{array}{l}
t_0 := \left(x - 2\right) \cdot \left(4.16438922228 - \frac{101.7851458539211 - \frac{3451.550173699799}{x}}{x}\right)\\
\mathbf{if}\;x \leq -125:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 3.25:\\
\;\;\;\;\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(\mathsf{fma}\left(x, 4.16438922228, 78.6994924154\right), x, 137.519416416\right), x, y\right), x, z\right) \cdot -0.0424927283095952\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -125 or 3.25 < x Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around -inf
lower-+.f64N/A
lower-*.f64N/A
lower-/.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.2%
Applied rewrites46.2%
lift-*.f64N/A
*-commutativeN/A
lower-*.f6446.2%
lift-+.f64N/A
add-flipN/A
lower--.f64N/A
lift-*.f64N/A
mul-1-negN/A
Applied rewrites46.2%
if -125 < x < 3.25Initial program 57.4%
Applied rewrites61.2%
Applied rewrites60.2%
Taylor expanded in x around 0
Applied rewrites49.3%
(FPCore (x y z)
:precision binary64
(let* ((t_0
(*
(- x 2.0)
(-
4.16438922228
(/ (- 101.7851458539211 (/ 3451.550173699799 x)) x)))))
(if (<= x -0.0068)
t_0
(if (<= x 3.25)
(*
(+ z (* x y))
(-
(* x (+ 0.3041881842569256 (* -1.787568985856513 x)))
0.0424927283095952))
t_0))))double code(double x, double y, double z) {
double t_0 = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x));
double tmp;
if (x <= -0.0068) {
tmp = t_0;
} else if (x <= 3.25) {
tmp = (z + (x * y)) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952);
} 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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: t_0
real(8) :: tmp
t_0 = (x - 2.0d0) * (4.16438922228d0 - ((101.7851458539211d0 - (3451.550173699799d0 / x)) / x))
if (x <= (-0.0068d0)) then
tmp = t_0
else if (x <= 3.25d0) then
tmp = (z + (x * y)) * ((x * (0.3041881842569256d0 + ((-1.787568985856513d0) * x))) - 0.0424927283095952d0)
else
tmp = t_0
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x));
double tmp;
if (x <= -0.0068) {
tmp = t_0;
} else if (x <= 3.25) {
tmp = (z + (x * y)) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952);
} else {
tmp = t_0;
}
return tmp;
}
def code(x, y, z): t_0 = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x)) tmp = 0 if x <= -0.0068: tmp = t_0 elif x <= 3.25: tmp = (z + (x * y)) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952) else: tmp = t_0 return tmp
function code(x, y, z) t_0 = Float64(Float64(x - 2.0) * Float64(4.16438922228 - Float64(Float64(101.7851458539211 - Float64(3451.550173699799 / x)) / x))) tmp = 0.0 if (x <= -0.0068) tmp = t_0; elseif (x <= 3.25) tmp = Float64(Float64(z + Float64(x * y)) * Float64(Float64(x * Float64(0.3041881842569256 + Float64(-1.787568985856513 * x))) - 0.0424927283095952)); else tmp = t_0; end return tmp end
function tmp_2 = code(x, y, z) t_0 = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x)); tmp = 0.0; if (x <= -0.0068) tmp = t_0; elseif (x <= 3.25) tmp = (z + (x * y)) * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952); else tmp = t_0; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(x - 2.0), $MachinePrecision] * N[(4.16438922228 - N[(N[(101.7851458539211 - N[(3451.550173699799 / x), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x, -0.0068], t$95$0, If[LessEqual[x, 3.25], N[(N[(z + N[(x * y), $MachinePrecision]), $MachinePrecision] * N[(N[(x * N[(0.3041881842569256 + N[(-1.787568985856513 * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - 0.0424927283095952), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
t_0 := \left(x - 2\right) \cdot \left(4.16438922228 - \frac{101.7851458539211 - \frac{3451.550173699799}{x}}{x}\right)\\
\mathbf{if}\;x \leq -0.0068:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 3.25:\\
\;\;\;\;\left(z + x \cdot y\right) \cdot \left(x \cdot \left(0.3041881842569256 + -1.787568985856513 \cdot x\right) - 0.0424927283095952\right)\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -0.00679999999999999962 or 3.25 < x Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around -inf
lower-+.f64N/A
lower-*.f64N/A
lower-/.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.2%
Applied rewrites46.2%
lift-*.f64N/A
*-commutativeN/A
lower-*.f6446.2%
lift-+.f64N/A
add-flipN/A
lower--.f64N/A
lift-*.f64N/A
mul-1-negN/A
Applied rewrites46.2%
if -0.00679999999999999962 < x < 3.25Initial program 57.4%
Applied rewrites61.2%
Applied rewrites60.2%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f64N/A
lower-+.f64N/A
lower-*.f6450.0%
Applied rewrites50.0%
Taylor expanded in x around 0
lower-+.f64N/A
lower-*.f6447.6%
Applied rewrites47.6%
(FPCore (x y z)
:precision binary64
(if (<= x -0.0068)
(*
(- x 2.0)
(- 4.16438922228 (/ (- 101.7851458539211 (/ 3451.550173699799 x)) x)))
(if (<= x 110.0)
(/ (* (- x 2.0) z) (+ (* 313.399215894 x) 47.066876606))
(- (* 4.16438922228 x) 110.1139242984811))))double code(double x, double y, double z) {
double tmp;
if (x <= -0.0068) {
tmp = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x));
} else if (x <= 110.0) {
tmp = ((x - 2.0) * z) / ((313.399215894 * x) + 47.066876606);
} else {
tmp = (4.16438922228 * x) - 110.1139242984811;
}
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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (x <= (-0.0068d0)) then
tmp = (x - 2.0d0) * (4.16438922228d0 - ((101.7851458539211d0 - (3451.550173699799d0 / x)) / x))
else if (x <= 110.0d0) then
tmp = ((x - 2.0d0) * z) / ((313.399215894d0 * x) + 47.066876606d0)
else
tmp = (4.16438922228d0 * x) - 110.1139242984811d0
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (x <= -0.0068) {
tmp = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x));
} else if (x <= 110.0) {
tmp = ((x - 2.0) * z) / ((313.399215894 * x) + 47.066876606);
} else {
tmp = (4.16438922228 * x) - 110.1139242984811;
}
return tmp;
}
def code(x, y, z): tmp = 0 if x <= -0.0068: tmp = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x)) elif x <= 110.0: tmp = ((x - 2.0) * z) / ((313.399215894 * x) + 47.066876606) else: tmp = (4.16438922228 * x) - 110.1139242984811 return tmp
function code(x, y, z) tmp = 0.0 if (x <= -0.0068) tmp = Float64(Float64(x - 2.0) * Float64(4.16438922228 - Float64(Float64(101.7851458539211 - Float64(3451.550173699799 / x)) / x))); elseif (x <= 110.0) tmp = Float64(Float64(Float64(x - 2.0) * z) / Float64(Float64(313.399215894 * x) + 47.066876606)); else tmp = Float64(Float64(4.16438922228 * x) - 110.1139242984811); end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (x <= -0.0068) tmp = (x - 2.0) * (4.16438922228 - ((101.7851458539211 - (3451.550173699799 / x)) / x)); elseif (x <= 110.0) tmp = ((x - 2.0) * z) / ((313.399215894 * x) + 47.066876606); else tmp = (4.16438922228 * x) - 110.1139242984811; end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[x, -0.0068], N[(N[(x - 2.0), $MachinePrecision] * N[(4.16438922228 - N[(N[(101.7851458539211 - N[(3451.550173699799 / x), $MachinePrecision]), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x, 110.0], N[(N[(N[(x - 2.0), $MachinePrecision] * z), $MachinePrecision] / N[(N[(313.399215894 * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], N[(N[(4.16438922228 * x), $MachinePrecision] - 110.1139242984811), $MachinePrecision]]]
\begin{array}{l}
\mathbf{if}\;x \leq -0.0068:\\
\;\;\;\;\left(x - 2\right) \cdot \left(4.16438922228 - \frac{101.7851458539211 - \frac{3451.550173699799}{x}}{x}\right)\\
\mathbf{elif}\;x \leq 110:\\
\;\;\;\;\frac{\left(x - 2\right) \cdot z}{313.399215894 \cdot x + 47.066876606}\\
\mathbf{else}:\\
\;\;\;\;4.16438922228 \cdot x - 110.1139242984811\\
\end{array}
if x < -0.00679999999999999962Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Applied rewrites53.5%
Taylor expanded in x around -inf
lower-+.f64N/A
lower-*.f64N/A
lower-/.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.2%
Applied rewrites46.2%
lift-*.f64N/A
*-commutativeN/A
lower-*.f6446.2%
lift-+.f64N/A
add-flipN/A
lower--.f64N/A
lift-*.f64N/A
mul-1-negN/A
Applied rewrites46.2%
if -0.00679999999999999962 < x < 110Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Taylor expanded in x around 0
lower-*.f6451.2%
Applied rewrites51.2%
Taylor expanded in x around 0
Applied rewrites34.9%
if 110 < x Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f6446.6%
Applied rewrites46.6%
(FPCore (x y z)
:precision binary64
(let* ((t_0 (- (* 4.16438922228 x) 110.1139242984811)))
(if (<= x -0.0068)
t_0
(if (<= x 110.0)
(/ (* (- x 2.0) z) (+ (* 313.399215894 x) 47.066876606))
t_0))))double code(double x, double y, double z) {
double t_0 = (4.16438922228 * x) - 110.1139242984811;
double tmp;
if (x <= -0.0068) {
tmp = t_0;
} else if (x <= 110.0) {
tmp = ((x - 2.0) * z) / ((313.399215894 * x) + 47.066876606);
} 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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: t_0
real(8) :: tmp
t_0 = (4.16438922228d0 * x) - 110.1139242984811d0
if (x <= (-0.0068d0)) then
tmp = t_0
else if (x <= 110.0d0) then
tmp = ((x - 2.0d0) * z) / ((313.399215894d0 * x) + 47.066876606d0)
else
tmp = t_0
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = (4.16438922228 * x) - 110.1139242984811;
double tmp;
if (x <= -0.0068) {
tmp = t_0;
} else if (x <= 110.0) {
tmp = ((x - 2.0) * z) / ((313.399215894 * x) + 47.066876606);
} else {
tmp = t_0;
}
return tmp;
}
def code(x, y, z): t_0 = (4.16438922228 * x) - 110.1139242984811 tmp = 0 if x <= -0.0068: tmp = t_0 elif x <= 110.0: tmp = ((x - 2.0) * z) / ((313.399215894 * x) + 47.066876606) else: tmp = t_0 return tmp
function code(x, y, z) t_0 = Float64(Float64(4.16438922228 * x) - 110.1139242984811) tmp = 0.0 if (x <= -0.0068) tmp = t_0; elseif (x <= 110.0) tmp = Float64(Float64(Float64(x - 2.0) * z) / Float64(Float64(313.399215894 * x) + 47.066876606)); else tmp = t_0; end return tmp end
function tmp_2 = code(x, y, z) t_0 = (4.16438922228 * x) - 110.1139242984811; tmp = 0.0; if (x <= -0.0068) tmp = t_0; elseif (x <= 110.0) tmp = ((x - 2.0) * z) / ((313.399215894 * x) + 47.066876606); else tmp = t_0; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(4.16438922228 * x), $MachinePrecision] - 110.1139242984811), $MachinePrecision]}, If[LessEqual[x, -0.0068], t$95$0, If[LessEqual[x, 110.0], N[(N[(N[(x - 2.0), $MachinePrecision] * z), $MachinePrecision] / N[(N[(313.399215894 * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
t_0 := 4.16438922228 \cdot x - 110.1139242984811\\
\mathbf{if}\;x \leq -0.0068:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 110:\\
\;\;\;\;\frac{\left(x - 2\right) \cdot z}{313.399215894 \cdot x + 47.066876606}\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -0.00679999999999999962 or 110 < x Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f6446.6%
Applied rewrites46.6%
if -0.00679999999999999962 < x < 110Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Taylor expanded in x around 0
lower-*.f6451.2%
Applied rewrites51.2%
Taylor expanded in x around 0
Applied rewrites34.9%
(FPCore (x y z)
:precision binary64
(let* ((t_0 (- (* 4.16438922228 x) 110.1139242984811)))
(if (<= x -0.0068)
t_0
(if (<= x 0.0078)
(*
z
(-
(* x (+ 0.3041881842569256 (* -1.787568985856513 x)))
0.0424927283095952))
t_0))))double code(double x, double y, double z) {
double t_0 = (4.16438922228 * x) - 110.1139242984811;
double tmp;
if (x <= -0.0068) {
tmp = t_0;
} else if (x <= 0.0078) {
tmp = z * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952);
} 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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: t_0
real(8) :: tmp
t_0 = (4.16438922228d0 * x) - 110.1139242984811d0
if (x <= (-0.0068d0)) then
tmp = t_0
else if (x <= 0.0078d0) then
tmp = z * ((x * (0.3041881842569256d0 + ((-1.787568985856513d0) * x))) - 0.0424927283095952d0)
else
tmp = t_0
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = (4.16438922228 * x) - 110.1139242984811;
double tmp;
if (x <= -0.0068) {
tmp = t_0;
} else if (x <= 0.0078) {
tmp = z * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952);
} else {
tmp = t_0;
}
return tmp;
}
def code(x, y, z): t_0 = (4.16438922228 * x) - 110.1139242984811 tmp = 0 if x <= -0.0068: tmp = t_0 elif x <= 0.0078: tmp = z * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952) else: tmp = t_0 return tmp
function code(x, y, z) t_0 = Float64(Float64(4.16438922228 * x) - 110.1139242984811) tmp = 0.0 if (x <= -0.0068) tmp = t_0; elseif (x <= 0.0078) tmp = Float64(z * Float64(Float64(x * Float64(0.3041881842569256 + Float64(-1.787568985856513 * x))) - 0.0424927283095952)); else tmp = t_0; end return tmp end
function tmp_2 = code(x, y, z) t_0 = (4.16438922228 * x) - 110.1139242984811; tmp = 0.0; if (x <= -0.0068) tmp = t_0; elseif (x <= 0.0078) tmp = z * ((x * (0.3041881842569256 + (-1.787568985856513 * x))) - 0.0424927283095952); else tmp = t_0; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(4.16438922228 * x), $MachinePrecision] - 110.1139242984811), $MachinePrecision]}, If[LessEqual[x, -0.0068], t$95$0, If[LessEqual[x, 0.0078], N[(z * N[(N[(x * N[(0.3041881842569256 + N[(-1.787568985856513 * x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - 0.0424927283095952), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
t_0 := 4.16438922228 \cdot x - 110.1139242984811\\
\mathbf{if}\;x \leq -0.0068:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 0.0078:\\
\;\;\;\;z \cdot \left(x \cdot \left(0.3041881842569256 + -1.787568985856513 \cdot x\right) - 0.0424927283095952\right)\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -0.00679999999999999962 or 0.0077999999999999996 < x Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f6446.6%
Applied rewrites46.6%
if -0.00679999999999999962 < x < 0.0077999999999999996Initial program 57.4%
Applied rewrites61.2%
Applied rewrites60.2%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f64N/A
lower-+.f64N/A
lower-*.f6450.0%
Applied rewrites50.0%
Taylor expanded in x around 0
Applied rewrites35.2%
(FPCore (x y z)
:precision binary64
(let* ((t_0 (- (* 4.16438922228 x) 110.1139242984811)))
(if (<= x -0.0068)
t_0
(if (<= x 0.0078)
(/ (* -2.0 z) (+ (* 313.399215894 x) 47.066876606))
t_0))))double code(double x, double y, double z) {
double t_0 = (4.16438922228 * x) - 110.1139242984811;
double tmp;
if (x <= -0.0068) {
tmp = t_0;
} else if (x <= 0.0078) {
tmp = (-2.0 * z) / ((313.399215894 * x) + 47.066876606);
} 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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: t_0
real(8) :: tmp
t_0 = (4.16438922228d0 * x) - 110.1139242984811d0
if (x <= (-0.0068d0)) then
tmp = t_0
else if (x <= 0.0078d0) then
tmp = ((-2.0d0) * z) / ((313.399215894d0 * x) + 47.066876606d0)
else
tmp = t_0
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = (4.16438922228 * x) - 110.1139242984811;
double tmp;
if (x <= -0.0068) {
tmp = t_0;
} else if (x <= 0.0078) {
tmp = (-2.0 * z) / ((313.399215894 * x) + 47.066876606);
} else {
tmp = t_0;
}
return tmp;
}
def code(x, y, z): t_0 = (4.16438922228 * x) - 110.1139242984811 tmp = 0 if x <= -0.0068: tmp = t_0 elif x <= 0.0078: tmp = (-2.0 * z) / ((313.399215894 * x) + 47.066876606) else: tmp = t_0 return tmp
function code(x, y, z) t_0 = Float64(Float64(4.16438922228 * x) - 110.1139242984811) tmp = 0.0 if (x <= -0.0068) tmp = t_0; elseif (x <= 0.0078) tmp = Float64(Float64(-2.0 * z) / Float64(Float64(313.399215894 * x) + 47.066876606)); else tmp = t_0; end return tmp end
function tmp_2 = code(x, y, z) t_0 = (4.16438922228 * x) - 110.1139242984811; tmp = 0.0; if (x <= -0.0068) tmp = t_0; elseif (x <= 0.0078) tmp = (-2.0 * z) / ((313.399215894 * x) + 47.066876606); else tmp = t_0; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(4.16438922228 * x), $MachinePrecision] - 110.1139242984811), $MachinePrecision]}, If[LessEqual[x, -0.0068], t$95$0, If[LessEqual[x, 0.0078], N[(N[(-2.0 * z), $MachinePrecision] / N[(N[(313.399215894 * x), $MachinePrecision] + 47.066876606), $MachinePrecision]), $MachinePrecision], t$95$0]]]
\begin{array}{l}
t_0 := 4.16438922228 \cdot x - 110.1139242984811\\
\mathbf{if}\;x \leq -0.0068:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 0.0078:\\
\;\;\;\;\frac{-2 \cdot z}{313.399215894 \cdot x + 47.066876606}\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -0.00679999999999999962 or 0.0077999999999999996 < x Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f6446.6%
Applied rewrites46.6%
if -0.00679999999999999962 < x < 0.0077999999999999996Initial program 57.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Taylor expanded in x around 0
lower-*.f6451.2%
Applied rewrites51.2%
Taylor expanded in x around 0
lower-*.f6434.6%
Applied rewrites34.6%
(FPCore (x y z) :precision binary64 (let* ((t_0 (- (* 4.16438922228 x) 110.1139242984811))) (if (<= x -0.0068) t_0 (if (<= x 0.0078) (* -0.0424927283095952 z) t_0))))
double code(double x, double y, double z) {
double t_0 = (4.16438922228 * x) - 110.1139242984811;
double tmp;
if (x <= -0.0068) {
tmp = t_0;
} else if (x <= 0.0078) {
tmp = -0.0424927283095952 * z;
} 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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: t_0
real(8) :: tmp
t_0 = (4.16438922228d0 * x) - 110.1139242984811d0
if (x <= (-0.0068d0)) then
tmp = t_0
else if (x <= 0.0078d0) then
tmp = (-0.0424927283095952d0) * z
else
tmp = t_0
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = (4.16438922228 * x) - 110.1139242984811;
double tmp;
if (x <= -0.0068) {
tmp = t_0;
} else if (x <= 0.0078) {
tmp = -0.0424927283095952 * z;
} else {
tmp = t_0;
}
return tmp;
}
def code(x, y, z): t_0 = (4.16438922228 * x) - 110.1139242984811 tmp = 0 if x <= -0.0068: tmp = t_0 elif x <= 0.0078: tmp = -0.0424927283095952 * z else: tmp = t_0 return tmp
function code(x, y, z) t_0 = Float64(Float64(4.16438922228 * x) - 110.1139242984811) tmp = 0.0 if (x <= -0.0068) tmp = t_0; elseif (x <= 0.0078) tmp = Float64(-0.0424927283095952 * z); else tmp = t_0; end return tmp end
function tmp_2 = code(x, y, z) t_0 = (4.16438922228 * x) - 110.1139242984811; tmp = 0.0; if (x <= -0.0068) tmp = t_0; elseif (x <= 0.0078) tmp = -0.0424927283095952 * z; else tmp = t_0; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(4.16438922228 * x), $MachinePrecision] - 110.1139242984811), $MachinePrecision]}, If[LessEqual[x, -0.0068], t$95$0, If[LessEqual[x, 0.0078], N[(-0.0424927283095952 * z), $MachinePrecision], t$95$0]]]
\begin{array}{l}
t_0 := 4.16438922228 \cdot x - 110.1139242984811\\
\mathbf{if}\;x \leq -0.0068:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 0.0078:\\
\;\;\;\;-0.0424927283095952 \cdot z\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
if x < -0.00679999999999999962 or 0.0077999999999999996 < x Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around 0
lower--.f64N/A
lower-*.f6446.6%
Applied rewrites46.6%
if -0.00679999999999999962 < x < 0.0077999999999999996Initial program 57.4%
Taylor expanded in x around 0
lower-*.f6434.7%
Applied rewrites34.7%
(FPCore (x y z) :precision binary64 (if (<= x -0.0068) (* x 4.16438922228) (if (<= x 3.25) (* -0.0424927283095952 z) (* x 4.16438922228))))
double code(double x, double y, double z) {
double tmp;
if (x <= -0.0068) {
tmp = x * 4.16438922228;
} else if (x <= 3.25) {
tmp = -0.0424927283095952 * z;
} else {
tmp = x * 4.16438922228;
}
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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (x <= (-0.0068d0)) then
tmp = x * 4.16438922228d0
else if (x <= 3.25d0) then
tmp = (-0.0424927283095952d0) * z
else
tmp = x * 4.16438922228d0
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (x <= -0.0068) {
tmp = x * 4.16438922228;
} else if (x <= 3.25) {
tmp = -0.0424927283095952 * z;
} else {
tmp = x * 4.16438922228;
}
return tmp;
}
def code(x, y, z): tmp = 0 if x <= -0.0068: tmp = x * 4.16438922228 elif x <= 3.25: tmp = -0.0424927283095952 * z else: tmp = x * 4.16438922228 return tmp
function code(x, y, z) tmp = 0.0 if (x <= -0.0068) tmp = Float64(x * 4.16438922228); elseif (x <= 3.25) tmp = Float64(-0.0424927283095952 * z); else tmp = Float64(x * 4.16438922228); end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (x <= -0.0068) tmp = x * 4.16438922228; elseif (x <= 3.25) tmp = -0.0424927283095952 * z; else tmp = x * 4.16438922228; end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[x, -0.0068], N[(x * 4.16438922228), $MachinePrecision], If[LessEqual[x, 3.25], N[(-0.0424927283095952 * z), $MachinePrecision], N[(x * 4.16438922228), $MachinePrecision]]]
\begin{array}{l}
\mathbf{if}\;x \leq -0.0068:\\
\;\;\;\;x \cdot 4.16438922228\\
\mathbf{elif}\;x \leq 3.25:\\
\;\;\;\;-0.0424927283095952 \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot 4.16438922228\\
\end{array}
if x < -0.00679999999999999962 or 3.25 < x Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around inf
Applied rewrites46.4%
if -0.00679999999999999962 < x < 3.25Initial program 57.4%
Taylor expanded in x around 0
lower-*.f6434.7%
Applied rewrites34.7%
(FPCore (x y z) :precision binary64 (* -0.0424927283095952 z))
double code(double x, double y, double z) {
return -0.0424927283095952 * z;
}
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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = (-0.0424927283095952d0) * z
end function
public static double code(double x, double y, double z) {
return -0.0424927283095952 * z;
}
def code(x, y, z): return -0.0424927283095952 * z
function code(x, y, z) return Float64(-0.0424927283095952 * z) end
function tmp = code(x, y, z) tmp = -0.0424927283095952 * z; end
code[x_, y_, z_] := N[(-0.0424927283095952 * z), $MachinePrecision]
-0.0424927283095952 \cdot z
Initial program 57.4%
Taylor expanded in x around 0
lower-*.f6434.7%
Applied rewrites34.7%
(FPCore (x y z) :precision binary64 -110.1139242984811)
double code(double x, double y, double z) {
return -110.1139242984811;
}
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, z)
use fmin_fmax_functions
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = -110.1139242984811d0
end function
public static double code(double x, double y, double z) {
return -110.1139242984811;
}
def code(x, y, z): return -110.1139242984811
function code(x, y, z) return -110.1139242984811 end
function tmp = code(x, y, z) tmp = -110.1139242984811; end
code[x_, y_, z_] := -110.1139242984811
-110.1139242984811
Initial program 57.4%
Taylor expanded in x around inf
lower-*.f64N/A
lower--.f64N/A
lower-*.f64N/A
lower-/.f6446.6%
Applied rewrites46.6%
Taylor expanded in x around 0
Applied rewrites3.3%
herbie shell --seed 2025183
(FPCore (x y z)
:name "Numeric.SpecFunctions:logGamma from math-functions-0.1.5.2, C"
:precision binary64
(/ (* (- x 2.0) (+ (* (+ (* (+ (* (+ (* x 4.16438922228) 78.6994924154) x) 137.519416416) x) y) x) z)) (+ (* (+ (* (+ (* (+ x 43.3400022514) x) 263.505074721) x) 313.399215894) x) 47.066876606)))