
(FPCore (x y z) :precision binary64 (- (+ (- x (* (+ y 0.5) (log y))) y) z))
double code(double x, double y, double z) {
return ((x - ((y + 0.5) * log(y))) + y) - z;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = ((x - ((y + 0.5d0) * log(y))) + y) - z
end function
public static double code(double x, double y, double z) {
return ((x - ((y + 0.5) * Math.log(y))) + y) - z;
}
def code(x, y, z): return ((x - ((y + 0.5) * math.log(y))) + y) - z
function code(x, y, z) return Float64(Float64(Float64(x - Float64(Float64(y + 0.5) * log(y))) + y) - z) end
function tmp = code(x, y, z) tmp = ((x - ((y + 0.5) * log(y))) + y) - z; end
code[x_, y_, z_] := N[(N[(N[(x - N[(N[(y + 0.5), $MachinePrecision] * N[Log[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + y), $MachinePrecision] - z), $MachinePrecision]
\begin{array}{l}
\\
\left(\left(x - \left(y + 0.5\right) \cdot \log y\right) + y\right) - z
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 10 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y z) :precision binary64 (- (+ (- x (* (+ y 0.5) (log y))) y) z))
double code(double x, double y, double z) {
return ((x - ((y + 0.5) * log(y))) + y) - z;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = ((x - ((y + 0.5d0) * log(y))) + y) - z
end function
public static double code(double x, double y, double z) {
return ((x - ((y + 0.5) * Math.log(y))) + y) - z;
}
def code(x, y, z): return ((x - ((y + 0.5) * math.log(y))) + y) - z
function code(x, y, z) return Float64(Float64(Float64(x - Float64(Float64(y + 0.5) * log(y))) + y) - z) end
function tmp = code(x, y, z) tmp = ((x - ((y + 0.5) * log(y))) + y) - z; end
code[x_, y_, z_] := N[(N[(N[(x - N[(N[(y + 0.5), $MachinePrecision] * N[Log[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + y), $MachinePrecision] - z), $MachinePrecision]
\begin{array}{l}
\\
\left(\left(x - \left(y + 0.5\right) \cdot \log y\right) + y\right) - z
\end{array}
(FPCore (x y z) :precision binary64 (+ x (- (fma (log y) (- -0.5 y) y) z)))
double code(double x, double y, double z) {
return x + (fma(log(y), (-0.5 - y), y) - z);
}
function code(x, y, z) return Float64(x + Float64(fma(log(y), Float64(-0.5 - y), y) - z)) end
code[x_, y_, z_] := N[(x + N[(N[(N[Log[y], $MachinePrecision] * N[(-0.5 - y), $MachinePrecision] + y), $MachinePrecision] - z), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
x + \left(\mathsf{fma}\left(\log y, -0.5 - y, y\right) - z\right)
\end{array}
Initial program 99.8%
associate--l+99.8%
sub-neg99.8%
associate-+l+99.8%
associate-+r-99.8%
*-commutative99.8%
distribute-rgt-neg-in99.8%
fma-define99.9%
+-commutative99.9%
distribute-neg-in99.9%
unsub-neg99.9%
metadata-eval99.9%
Simplified99.9%
(FPCore (x y z)
:precision binary64
(let* ((t_0 (* y (- 1.0 (log y)))))
(if (<= y 1.95e+14)
(- (- x (* (log y) 0.5)) z)
(if (<= y 4.6e+115) (+ x t_0) (- t_0 z)))))
double code(double x, double y, double z) {
double t_0 = y * (1.0 - log(y));
double tmp;
if (y <= 1.95e+14) {
tmp = (x - (log(y) * 0.5)) - z;
} else if (y <= 4.6e+115) {
tmp = x + t_0;
} else {
tmp = t_0 - z;
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: t_0
real(8) :: tmp
t_0 = y * (1.0d0 - log(y))
if (y <= 1.95d+14) then
tmp = (x - (log(y) * 0.5d0)) - z
else if (y <= 4.6d+115) then
tmp = x + t_0
else
tmp = t_0 - z
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = y * (1.0 - Math.log(y));
double tmp;
if (y <= 1.95e+14) {
tmp = (x - (Math.log(y) * 0.5)) - z;
} else if (y <= 4.6e+115) {
tmp = x + t_0;
} else {
tmp = t_0 - z;
}
return tmp;
}
def code(x, y, z): t_0 = y * (1.0 - math.log(y)) tmp = 0 if y <= 1.95e+14: tmp = (x - (math.log(y) * 0.5)) - z elif y <= 4.6e+115: tmp = x + t_0 else: tmp = t_0 - z return tmp
function code(x, y, z) t_0 = Float64(y * Float64(1.0 - log(y))) tmp = 0.0 if (y <= 1.95e+14) tmp = Float64(Float64(x - Float64(log(y) * 0.5)) - z); elseif (y <= 4.6e+115) tmp = Float64(x + t_0); else tmp = Float64(t_0 - z); end return tmp end
function tmp_2 = code(x, y, z) t_0 = y * (1.0 - log(y)); tmp = 0.0; if (y <= 1.95e+14) tmp = (x - (log(y) * 0.5)) - z; elseif (y <= 4.6e+115) tmp = x + t_0; else tmp = t_0 - z; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(y * N[(1.0 - N[Log[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[y, 1.95e+14], N[(N[(x - N[(N[Log[y], $MachinePrecision] * 0.5), $MachinePrecision]), $MachinePrecision] - z), $MachinePrecision], If[LessEqual[y, 4.6e+115], N[(x + t$95$0), $MachinePrecision], N[(t$95$0 - z), $MachinePrecision]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := y \cdot \left(1 - \log y\right)\\
\mathbf{if}\;y \leq 1.95 \cdot 10^{+14}:\\
\;\;\;\;\left(x - \log y \cdot 0.5\right) - z\\
\mathbf{elif}\;y \leq 4.6 \cdot 10^{+115}:\\
\;\;\;\;x + t\_0\\
\mathbf{else}:\\
\;\;\;\;t\_0 - z\\
\end{array}
\end{array}
if y < 1.95e14Initial program 100.0%
Taylor expanded in y around 0 98.9%
if 1.95e14 < y < 4.60000000000000007e115Initial program 99.8%
associate--l+99.8%
sub-neg99.8%
associate-+l+99.8%
associate-+r-99.8%
*-commutative99.8%
distribute-rgt-neg-in99.8%
fma-define99.9%
+-commutative99.9%
distribute-neg-in99.9%
unsub-neg99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in y around inf 99.9%
+-commutative99.9%
associate--l+99.9%
+-commutative99.9%
log-rec99.9%
unsub-neg99.9%
associate-*r/99.9%
log-rec99.9%
distribute-rgt-neg-in99.9%
distribute-lft-neg-in99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in y around 0 99.9%
mul-1-neg99.9%
metadata-eval99.9%
distribute-lft-neg-in99.9%
distribute-neg-in99.9%
distribute-rgt-in99.9%
distribute-rgt-neg-in99.9%
+-commutative99.9%
distribute-neg-in99.9%
metadata-eval99.9%
sub-neg99.9%
Simplified99.9%
Taylor expanded in y around inf 85.1%
log-rec85.1%
sub-neg85.1%
Simplified85.1%
if 4.60000000000000007e115 < y Initial program 99.6%
add-cube-cbrt98.5%
pow398.3%
sub-neg98.3%
*-commutative98.3%
distribute-rgt-neg-in98.3%
+-commutative98.3%
distribute-neg-in98.3%
metadata-eval98.3%
sub-neg98.3%
Applied egg-rr98.3%
Taylor expanded in y around inf 88.3%
log-rec88.3%
sub-neg88.3%
Simplified88.3%
Final simplification93.7%
(FPCore (x y z)
:precision binary64
(let* ((t_0 (* y (- 1.0 (log y)))))
(if (<= y 1.4e+16)
(- (+ x y) z)
(if (<= y 2.55e+117) (+ x t_0) (- t_0 z)))))
double code(double x, double y, double z) {
double t_0 = y * (1.0 - log(y));
double tmp;
if (y <= 1.4e+16) {
tmp = (x + y) - z;
} else if (y <= 2.55e+117) {
tmp = x + t_0;
} else {
tmp = t_0 - z;
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: t_0
real(8) :: tmp
t_0 = y * (1.0d0 - log(y))
if (y <= 1.4d+16) then
tmp = (x + y) - z
else if (y <= 2.55d+117) then
tmp = x + t_0
else
tmp = t_0 - z
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = y * (1.0 - Math.log(y));
double tmp;
if (y <= 1.4e+16) {
tmp = (x + y) - z;
} else if (y <= 2.55e+117) {
tmp = x + t_0;
} else {
tmp = t_0 - z;
}
return tmp;
}
def code(x, y, z): t_0 = y * (1.0 - math.log(y)) tmp = 0 if y <= 1.4e+16: tmp = (x + y) - z elif y <= 2.55e+117: tmp = x + t_0 else: tmp = t_0 - z return tmp
function code(x, y, z) t_0 = Float64(y * Float64(1.0 - log(y))) tmp = 0.0 if (y <= 1.4e+16) tmp = Float64(Float64(x + y) - z); elseif (y <= 2.55e+117) tmp = Float64(x + t_0); else tmp = Float64(t_0 - z); end return tmp end
function tmp_2 = code(x, y, z) t_0 = y * (1.0 - log(y)); tmp = 0.0; if (y <= 1.4e+16) tmp = (x + y) - z; elseif (y <= 2.55e+117) tmp = x + t_0; else tmp = t_0 - z; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(y * N[(1.0 - N[Log[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[y, 1.4e+16], N[(N[(x + y), $MachinePrecision] - z), $MachinePrecision], If[LessEqual[y, 2.55e+117], N[(x + t$95$0), $MachinePrecision], N[(t$95$0 - z), $MachinePrecision]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := y \cdot \left(1 - \log y\right)\\
\mathbf{if}\;y \leq 1.4 \cdot 10^{+16}:\\
\;\;\;\;\left(x + y\right) - z\\
\mathbf{elif}\;y \leq 2.55 \cdot 10^{+117}:\\
\;\;\;\;x + t\_0\\
\mathbf{else}:\\
\;\;\;\;t\_0 - z\\
\end{array}
\end{array}
if y < 1.4e16Initial program 100.0%
add-cube-cbrt98.9%
pow298.9%
sub-neg98.9%
*-commutative98.9%
distribute-rgt-neg-in98.9%
+-commutative98.9%
distribute-neg-in98.9%
metadata-eval98.9%
sub-neg98.9%
sub-neg98.9%
*-commutative98.9%
distribute-rgt-neg-in98.9%
+-commutative98.9%
distribute-neg-in98.9%
metadata-eval98.9%
sub-neg98.9%
Applied egg-rr98.9%
Taylor expanded in x around inf 72.9%
if 1.4e16 < y < 2.5499999999999998e117Initial program 99.8%
associate--l+99.8%
sub-neg99.8%
associate-+l+99.8%
associate-+r-99.8%
*-commutative99.8%
distribute-rgt-neg-in99.8%
fma-define99.9%
+-commutative99.9%
distribute-neg-in99.9%
unsub-neg99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in y around inf 99.9%
+-commutative99.9%
associate--l+99.9%
+-commutative99.9%
log-rec99.9%
unsub-neg99.9%
associate-*r/99.9%
log-rec99.9%
distribute-rgt-neg-in99.9%
distribute-lft-neg-in99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in y around 0 99.9%
mul-1-neg99.9%
metadata-eval99.9%
distribute-lft-neg-in99.9%
distribute-neg-in99.9%
distribute-rgt-in99.9%
distribute-rgt-neg-in99.9%
+-commutative99.9%
distribute-neg-in99.9%
metadata-eval99.9%
sub-neg99.9%
Simplified99.9%
Taylor expanded in y around inf 85.1%
log-rec85.1%
sub-neg85.1%
Simplified85.1%
if 2.5499999999999998e117 < y Initial program 99.6%
add-cube-cbrt98.5%
pow398.3%
sub-neg98.3%
*-commutative98.3%
distribute-rgt-neg-in98.3%
+-commutative98.3%
distribute-neg-in98.3%
metadata-eval98.3%
sub-neg98.3%
Applied egg-rr98.3%
Taylor expanded in y around inf 88.3%
log-rec88.3%
sub-neg88.3%
Simplified88.3%
(FPCore (x y z) :precision binary64 (if (<= y 0.3) (- (- x (* (log y) 0.5)) z) (+ x (- (* y (- 1.0 (log y))) z))))
double code(double x, double y, double z) {
double tmp;
if (y <= 0.3) {
tmp = (x - (log(y) * 0.5)) - z;
} else {
tmp = x + ((y * (1.0 - log(y))) - z);
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (y <= 0.3d0) then
tmp = (x - (log(y) * 0.5d0)) - z
else
tmp = x + ((y * (1.0d0 - log(y))) - z)
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (y <= 0.3) {
tmp = (x - (Math.log(y) * 0.5)) - z;
} else {
tmp = x + ((y * (1.0 - Math.log(y))) - z);
}
return tmp;
}
def code(x, y, z): tmp = 0 if y <= 0.3: tmp = (x - (math.log(y) * 0.5)) - z else: tmp = x + ((y * (1.0 - math.log(y))) - z) return tmp
function code(x, y, z) tmp = 0.0 if (y <= 0.3) tmp = Float64(Float64(x - Float64(log(y) * 0.5)) - z); else tmp = Float64(x + Float64(Float64(y * Float64(1.0 - log(y))) - z)); end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (y <= 0.3) tmp = (x - (log(y) * 0.5)) - z; else tmp = x + ((y * (1.0 - log(y))) - z); end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[y, 0.3], N[(N[(x - N[(N[Log[y], $MachinePrecision] * 0.5), $MachinePrecision]), $MachinePrecision] - z), $MachinePrecision], N[(x + N[(N[(y * N[(1.0 - N[Log[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - z), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq 0.3:\\
\;\;\;\;\left(x - \log y \cdot 0.5\right) - z\\
\mathbf{else}:\\
\;\;\;\;x + \left(y \cdot \left(1 - \log y\right) - z\right)\\
\end{array}
\end{array}
if y < 0.299999999999999989Initial program 100.0%
Taylor expanded in y around 0 99.4%
if 0.299999999999999989 < y Initial program 99.7%
associate--l+99.7%
sub-neg99.7%
associate-+l+99.7%
associate-+r-99.7%
*-commutative99.7%
distribute-rgt-neg-in99.7%
fma-define99.8%
+-commutative99.8%
distribute-neg-in99.8%
unsub-neg99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in y around inf 99.1%
log-rec99.1%
sub-neg99.1%
Simplified99.1%
Final simplification99.3%
(FPCore (x y z) :precision binary64 (if (<= y 2.8e+14) (- (+ x y) z) (+ x (* y (- 1.0 (log y))))))
double code(double x, double y, double z) {
double tmp;
if (y <= 2.8e+14) {
tmp = (x + y) - z;
} else {
tmp = x + (y * (1.0 - log(y)));
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (y <= 2.8d+14) then
tmp = (x + y) - z
else
tmp = x + (y * (1.0d0 - log(y)))
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (y <= 2.8e+14) {
tmp = (x + y) - z;
} else {
tmp = x + (y * (1.0 - Math.log(y)));
}
return tmp;
}
def code(x, y, z): tmp = 0 if y <= 2.8e+14: tmp = (x + y) - z else: tmp = x + (y * (1.0 - math.log(y))) return tmp
function code(x, y, z) tmp = 0.0 if (y <= 2.8e+14) tmp = Float64(Float64(x + y) - z); else tmp = Float64(x + Float64(y * Float64(1.0 - log(y)))); end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (y <= 2.8e+14) tmp = (x + y) - z; else tmp = x + (y * (1.0 - log(y))); end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[y, 2.8e+14], N[(N[(x + y), $MachinePrecision] - z), $MachinePrecision], N[(x + N[(y * N[(1.0 - N[Log[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq 2.8 \cdot 10^{+14}:\\
\;\;\;\;\left(x + y\right) - z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot \left(1 - \log y\right)\\
\end{array}
\end{array}
if y < 2.8e14Initial program 100.0%
add-cube-cbrt98.9%
pow298.9%
sub-neg98.9%
*-commutative98.9%
distribute-rgt-neg-in98.9%
+-commutative98.9%
distribute-neg-in98.9%
metadata-eval98.9%
sub-neg98.9%
sub-neg98.9%
*-commutative98.9%
distribute-rgt-neg-in98.9%
+-commutative98.9%
distribute-neg-in98.9%
metadata-eval98.9%
sub-neg98.9%
Applied egg-rr98.9%
Taylor expanded in x around inf 72.9%
if 2.8e14 < y Initial program 99.7%
associate--l+99.7%
sub-neg99.7%
associate-+l+99.7%
associate-+r-99.7%
*-commutative99.7%
distribute-rgt-neg-in99.7%
fma-define99.8%
+-commutative99.8%
distribute-neg-in99.8%
unsub-neg99.8%
metadata-eval99.8%
Simplified99.8%
Taylor expanded in y around inf 99.7%
+-commutative99.7%
associate--l+99.7%
+-commutative99.7%
log-rec99.7%
unsub-neg99.7%
associate-*r/99.7%
log-rec99.7%
distribute-rgt-neg-in99.7%
distribute-lft-neg-in99.7%
metadata-eval99.7%
Simplified99.7%
Taylor expanded in y around 0 99.7%
mul-1-neg99.7%
metadata-eval99.7%
distribute-lft-neg-in99.7%
distribute-neg-in99.7%
distribute-rgt-in99.7%
distribute-rgt-neg-in99.7%
+-commutative99.7%
distribute-neg-in99.7%
metadata-eval99.7%
sub-neg99.7%
Simplified99.7%
Taylor expanded in y around inf 82.7%
log-rec82.7%
sub-neg82.7%
Simplified82.7%
(FPCore (x y z) :precision binary64 (- (+ y (- x (* (log y) (+ y 0.5)))) z))
double code(double x, double y, double z) {
return (y + (x - (log(y) * (y + 0.5)))) - z;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = (y + (x - (log(y) * (y + 0.5d0)))) - z
end function
public static double code(double x, double y, double z) {
return (y + (x - (Math.log(y) * (y + 0.5)))) - z;
}
def code(x, y, z): return (y + (x - (math.log(y) * (y + 0.5)))) - z
function code(x, y, z) return Float64(Float64(y + Float64(x - Float64(log(y) * Float64(y + 0.5)))) - z) end
function tmp = code(x, y, z) tmp = (y + (x - (log(y) * (y + 0.5)))) - z; end
code[x_, y_, z_] := N[(N[(y + N[(x - N[(N[Log[y], $MachinePrecision] * N[(y + 0.5), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - z), $MachinePrecision]
\begin{array}{l}
\\
\left(y + \left(x - \log y \cdot \left(y + 0.5\right)\right)\right) - z
\end{array}
Initial program 99.8%
Final simplification99.8%
(FPCore (x y z) :precision binary64 (if (<= y 8.5e+118) (- (+ x y) z) (- y (* y (log y)))))
double code(double x, double y, double z) {
double tmp;
if (y <= 8.5e+118) {
tmp = (x + y) - z;
} else {
tmp = y - (y * log(y));
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (y <= 8.5d+118) then
tmp = (x + y) - z
else
tmp = y - (y * log(y))
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (y <= 8.5e+118) {
tmp = (x + y) - z;
} else {
tmp = y - (y * Math.log(y));
}
return tmp;
}
def code(x, y, z): tmp = 0 if y <= 8.5e+118: tmp = (x + y) - z else: tmp = y - (y * math.log(y)) return tmp
function code(x, y, z) tmp = 0.0 if (y <= 8.5e+118) tmp = Float64(Float64(x + y) - z); else tmp = Float64(y - Float64(y * log(y))); end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (y <= 8.5e+118) tmp = (x + y) - z; else tmp = y - (y * log(y)); end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[y, 8.5e+118], N[(N[(x + y), $MachinePrecision] - z), $MachinePrecision], N[(y - N[(y * N[Log[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq 8.5 \cdot 10^{+118}:\\
\;\;\;\;\left(x + y\right) - z\\
\mathbf{else}:\\
\;\;\;\;y - y \cdot \log y\\
\end{array}
\end{array}
if y < 8.50000000000000033e118Initial program 99.9%
add-cube-cbrt98.8%
pow298.8%
sub-neg98.8%
*-commutative98.8%
distribute-rgt-neg-in98.8%
+-commutative98.8%
distribute-neg-in98.8%
metadata-eval98.8%
sub-neg98.8%
sub-neg98.8%
*-commutative98.8%
distribute-rgt-neg-in98.8%
+-commutative98.8%
distribute-neg-in98.8%
metadata-eval98.8%
sub-neg98.8%
Applied egg-rr98.8%
Taylor expanded in x around inf 70.6%
if 8.50000000000000033e118 < y Initial program 99.6%
Taylor expanded in y around inf 88.1%
*-commutative88.1%
log-rec88.1%
distribute-lft-neg-in88.1%
distribute-rgt-neg-in88.1%
Simplified88.1%
Taylor expanded in z around inf 51.4%
sub-neg51.4%
metadata-eval51.4%
+-commutative51.4%
+-commutative51.4%
mul-1-neg51.4%
unsub-neg51.4%
associate-/l*51.4%
Simplified51.4%
Taylor expanded in z around 0 71.2%
(FPCore (x y z) :precision binary64 (if (<= x -1.25e+38) x (if (<= x 9.8e+86) (- z) x)))
double code(double x, double y, double z) {
double tmp;
if (x <= -1.25e+38) {
tmp = x;
} else if (x <= 9.8e+86) {
tmp = -z;
} else {
tmp = x;
}
return tmp;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
real(8) :: tmp
if (x <= (-1.25d+38)) then
tmp = x
else if (x <= 9.8d+86) then
tmp = -z
else
tmp = x
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (x <= -1.25e+38) {
tmp = x;
} else if (x <= 9.8e+86) {
tmp = -z;
} else {
tmp = x;
}
return tmp;
}
def code(x, y, z): tmp = 0 if x <= -1.25e+38: tmp = x elif x <= 9.8e+86: tmp = -z else: tmp = x return tmp
function code(x, y, z) tmp = 0.0 if (x <= -1.25e+38) tmp = x; elseif (x <= 9.8e+86) tmp = Float64(-z); else tmp = x; end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (x <= -1.25e+38) tmp = x; elseif (x <= 9.8e+86) tmp = -z; else tmp = x; end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[x, -1.25e+38], x, If[LessEqual[x, 9.8e+86], (-z), x]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -1.25 \cdot 10^{+38}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 9.8 \cdot 10^{+86}:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\end{array}
if x < -1.24999999999999992e38 or 9.7999999999999999e86 < x Initial program 99.9%
associate--l+99.9%
sub-neg99.9%
associate-+l+99.9%
associate-+r-99.9%
*-commutative99.9%
distribute-rgt-neg-in99.9%
fma-define100.0%
+-commutative100.0%
distribute-neg-in100.0%
unsub-neg100.0%
metadata-eval100.0%
Simplified100.0%
Taylor expanded in x around inf 66.4%
if -1.24999999999999992e38 < x < 9.7999999999999999e86Initial program 99.8%
Taylor expanded in y around inf 72.7%
*-commutative72.7%
log-rec72.7%
distribute-lft-neg-in72.7%
distribute-rgt-neg-in72.7%
Simplified72.7%
Taylor expanded in y around 0 38.2%
neg-mul-138.2%
Simplified38.2%
(FPCore (x y z) :precision binary64 (- x z))
double code(double x, double y, double z) {
return x - z;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = x - z
end function
public static double code(double x, double y, double z) {
return x - z;
}
def code(x, y, z): return x - z
function code(x, y, z) return Float64(x - z) end
function tmp = code(x, y, z) tmp = x - z; end
code[x_, y_, z_] := N[(x - z), $MachinePrecision]
\begin{array}{l}
\\
x - z
\end{array}
Initial program 99.8%
associate--l+99.8%
sub-neg99.8%
associate-+l+99.8%
associate-+r-99.8%
*-commutative99.8%
distribute-rgt-neg-in99.8%
fma-define99.9%
+-commutative99.9%
distribute-neg-in99.9%
unsub-neg99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in z around inf 58.1%
neg-mul-158.1%
Simplified58.1%
Final simplification58.1%
(FPCore (x y z) :precision binary64 x)
double code(double x, double y, double z) {
return x;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = x
end function
public static double code(double x, double y, double z) {
return x;
}
def code(x, y, z): return x
function code(x, y, z) return x end
function tmp = code(x, y, z) tmp = x; end
code[x_, y_, z_] := x
\begin{array}{l}
\\
x
\end{array}
Initial program 99.8%
associate--l+99.8%
sub-neg99.8%
associate-+l+99.8%
associate-+r-99.8%
*-commutative99.8%
distribute-rgt-neg-in99.8%
fma-define99.9%
+-commutative99.9%
distribute-neg-in99.9%
unsub-neg99.9%
metadata-eval99.9%
Simplified99.9%
Taylor expanded in x around inf 28.3%
(FPCore (x y z) :precision binary64 (- (- (+ y x) z) (* (+ y 0.5) (log y))))
double code(double x, double y, double z) {
return ((y + x) - z) - ((y + 0.5) * log(y));
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = ((y + x) - z) - ((y + 0.5d0) * log(y))
end function
public static double code(double x, double y, double z) {
return ((y + x) - z) - ((y + 0.5) * Math.log(y));
}
def code(x, y, z): return ((y + x) - z) - ((y + 0.5) * math.log(y))
function code(x, y, z) return Float64(Float64(Float64(y + x) - z) - Float64(Float64(y + 0.5) * log(y))) end
function tmp = code(x, y, z) tmp = ((y + x) - z) - ((y + 0.5) * log(y)); end
code[x_, y_, z_] := N[(N[(N[(y + x), $MachinePrecision] - z), $MachinePrecision] - N[(N[(y + 0.5), $MachinePrecision] * N[Log[y], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\left(\left(y + x\right) - z\right) - \left(y + 0.5\right) \cdot \log y
\end{array}
herbie shell --seed 2024103
(FPCore (x y z)
:name "Numeric.SpecFunctions:stirlingError from math-functions-0.1.5.2"
:precision binary64
:alt
(- (- (+ y x) z) (* (+ y 0.5) (log y)))
(- (+ (- x (* (+ y 0.5) (log y))) y) z))