
(FPCore (x y z) :precision binary64 (- (- (* x (log y)) z) y))
double code(double x, double y, double z) {
return ((x * log(y)) - z) - y;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = ((x * log(y)) - z) - y
end function
public static double code(double x, double y, double z) {
return ((x * Math.log(y)) - z) - y;
}
def code(x, y, z): return ((x * math.log(y)) - z) - y
function code(x, y, z) return Float64(Float64(Float64(x * log(y)) - z) - y) end
function tmp = code(x, y, z) tmp = ((x * log(y)) - z) - y; end
code[x_, y_, z_] := N[(N[(N[(x * N[Log[y], $MachinePrecision]), $MachinePrecision] - z), $MachinePrecision] - y), $MachinePrecision]
\begin{array}{l}
\\
\left(x \cdot \log y - z\right) - y
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 6 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y z) :precision binary64 (- (- (* x (log y)) z) y))
double code(double x, double y, double z) {
return ((x * log(y)) - z) - y;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = ((x * log(y)) - z) - y
end function
public static double code(double x, double y, double z) {
return ((x * Math.log(y)) - z) - y;
}
def code(x, y, z): return ((x * math.log(y)) - z) - y
function code(x, y, z) return Float64(Float64(Float64(x * log(y)) - z) - y) end
function tmp = code(x, y, z) tmp = ((x * log(y)) - z) - y; end
code[x_, y_, z_] := N[(N[(N[(x * N[Log[y], $MachinePrecision]), $MachinePrecision] - z), $MachinePrecision] - y), $MachinePrecision]
\begin{array}{l}
\\
\left(x \cdot \log y - z\right) - y
\end{array}
(FPCore (x y z) :precision binary64 (- (- (* (log y) x) z) y))
double code(double x, double y, double z) {
return ((log(y) * x) - z) - y;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = ((log(y) * x) - z) - y
end function
public static double code(double x, double y, double z) {
return ((Math.log(y) * x) - z) - y;
}
def code(x, y, z): return ((math.log(y) * x) - z) - y
function code(x, y, z) return Float64(Float64(Float64(log(y) * x) - z) - y) end
function tmp = code(x, y, z) tmp = ((log(y) * x) - z) - y; end
code[x_, y_, z_] := N[(N[(N[(N[Log[y], $MachinePrecision] * x), $MachinePrecision] - z), $MachinePrecision] - y), $MachinePrecision]
\begin{array}{l}
\\
\left(\log y \cdot x - z\right) - y
\end{array}
Initial program 99.9%
Final simplification99.9%
(FPCore (x y z) :precision binary64 (let* ((t_0 (- (* (log y) x) z))) (if (<= x -840000000.0) t_0 (if (<= x 1.22e+29) (- (- z) y) t_0))))
double code(double x, double y, double z) {
double t_0 = (log(y) * x) - z;
double tmp;
if (x <= -840000000.0) {
tmp = t_0;
} else if (x <= 1.22e+29) {
tmp = -z - y;
} else {
tmp = t_0;
}
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 = (log(y) * x) - z
if (x <= (-840000000.0d0)) then
tmp = t_0
else if (x <= 1.22d+29) then
tmp = -z - y
else
tmp = t_0
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = (Math.log(y) * x) - z;
double tmp;
if (x <= -840000000.0) {
tmp = t_0;
} else if (x <= 1.22e+29) {
tmp = -z - y;
} else {
tmp = t_0;
}
return tmp;
}
def code(x, y, z): t_0 = (math.log(y) * x) - z tmp = 0 if x <= -840000000.0: tmp = t_0 elif x <= 1.22e+29: tmp = -z - y else: tmp = t_0 return tmp
function code(x, y, z) t_0 = Float64(Float64(log(y) * x) - z) tmp = 0.0 if (x <= -840000000.0) tmp = t_0; elseif (x <= 1.22e+29) tmp = Float64(Float64(-z) - y); else tmp = t_0; end return tmp end
function tmp_2 = code(x, y, z) t_0 = (log(y) * x) - z; tmp = 0.0; if (x <= -840000000.0) tmp = t_0; elseif (x <= 1.22e+29) tmp = -z - y; else tmp = t_0; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[(N[Log[y], $MachinePrecision] * x), $MachinePrecision] - z), $MachinePrecision]}, If[LessEqual[x, -840000000.0], t$95$0, If[LessEqual[x, 1.22e+29], N[((-z) - y), $MachinePrecision], t$95$0]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \log y \cdot x - z\\
\mathbf{if}\;x \leq -840000000:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 1.22 \cdot 10^{+29}:\\
\;\;\;\;\left(-z\right) - y\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
\end{array}
if x < -8.4e8 or 1.22e29 < x Initial program 99.7%
Taylor expanded in y around 0
lower--.f64N/A
*-commutativeN/A
lower-*.f64N/A
lower-log.f6486.8
Applied rewrites86.8%
if -8.4e8 < x < 1.22e29Initial program 99.9%
Taylor expanded in z around inf
mul-1-negN/A
lower-neg.f6490.9
Applied rewrites90.9%
(FPCore (x y z) :precision binary64 (let* ((t_0 (* (log y) x))) (if (<= x -1.8e+106) t_0 (if (<= x 6.1e+109) (- (- z) y) t_0))))
double code(double x, double y, double z) {
double t_0 = log(y) * x;
double tmp;
if (x <= -1.8e+106) {
tmp = t_0;
} else if (x <= 6.1e+109) {
tmp = -z - y;
} else {
tmp = t_0;
}
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 = log(y) * x
if (x <= (-1.8d+106)) then
tmp = t_0
else if (x <= 6.1d+109) then
tmp = -z - y
else
tmp = t_0
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double t_0 = Math.log(y) * x;
double tmp;
if (x <= -1.8e+106) {
tmp = t_0;
} else if (x <= 6.1e+109) {
tmp = -z - y;
} else {
tmp = t_0;
}
return tmp;
}
def code(x, y, z): t_0 = math.log(y) * x tmp = 0 if x <= -1.8e+106: tmp = t_0 elif x <= 6.1e+109: tmp = -z - y else: tmp = t_0 return tmp
function code(x, y, z) t_0 = Float64(log(y) * x) tmp = 0.0 if (x <= -1.8e+106) tmp = t_0; elseif (x <= 6.1e+109) tmp = Float64(Float64(-z) - y); else tmp = t_0; end return tmp end
function tmp_2 = code(x, y, z) t_0 = log(y) * x; tmp = 0.0; if (x <= -1.8e+106) tmp = t_0; elseif (x <= 6.1e+109) tmp = -z - y; else tmp = t_0; end tmp_2 = tmp; end
code[x_, y_, z_] := Block[{t$95$0 = N[(N[Log[y], $MachinePrecision] * x), $MachinePrecision]}, If[LessEqual[x, -1.8e+106], t$95$0, If[LessEqual[x, 6.1e+109], N[((-z) - y), $MachinePrecision], t$95$0]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \log y \cdot x\\
\mathbf{if}\;x \leq -1.8 \cdot 10^{+106}:\\
\;\;\;\;t\_0\\
\mathbf{elif}\;x \leq 6.1 \cdot 10^{+109}:\\
\;\;\;\;\left(-z\right) - y\\
\mathbf{else}:\\
\;\;\;\;t\_0\\
\end{array}
\end{array}
if x < -1.8e106 or 6.10000000000000008e109 < x Initial program 99.7%
Taylor expanded in x around inf
*-commutativeN/A
lower-*.f64N/A
lower-log.f6475.9
Applied rewrites75.9%
if -1.8e106 < x < 6.10000000000000008e109Initial program 99.9%
Taylor expanded in z around inf
mul-1-negN/A
lower-neg.f6486.2
Applied rewrites86.2%
(FPCore (x y z) :precision binary64 (if (<= z -7.2e+140) (- z) (if (<= z 1.45e-51) (- y) (- z))))
double code(double x, double y, double z) {
double tmp;
if (z <= -7.2e+140) {
tmp = -z;
} else if (z <= 1.45e-51) {
tmp = -y;
} else {
tmp = -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 (z <= (-7.2d+140)) then
tmp = -z
else if (z <= 1.45d-51) then
tmp = -y
else
tmp = -z
end if
code = tmp
end function
public static double code(double x, double y, double z) {
double tmp;
if (z <= -7.2e+140) {
tmp = -z;
} else if (z <= 1.45e-51) {
tmp = -y;
} else {
tmp = -z;
}
return tmp;
}
def code(x, y, z): tmp = 0 if z <= -7.2e+140: tmp = -z elif z <= 1.45e-51: tmp = -y else: tmp = -z return tmp
function code(x, y, z) tmp = 0.0 if (z <= -7.2e+140) tmp = Float64(-z); elseif (z <= 1.45e-51) tmp = Float64(-y); else tmp = Float64(-z); end return tmp end
function tmp_2 = code(x, y, z) tmp = 0.0; if (z <= -7.2e+140) tmp = -z; elseif (z <= 1.45e-51) tmp = -y; else tmp = -z; end tmp_2 = tmp; end
code[x_, y_, z_] := If[LessEqual[z, -7.2e+140], (-z), If[LessEqual[z, 1.45e-51], (-y), (-z)]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;z \leq -7.2 \cdot 10^{+140}:\\
\;\;\;\;-z\\
\mathbf{elif}\;z \leq 1.45 \cdot 10^{-51}:\\
\;\;\;\;-y\\
\mathbf{else}:\\
\;\;\;\;-z\\
\end{array}
\end{array}
if z < -7.1999999999999999e140 or 1.44999999999999986e-51 < z Initial program 99.9%
Taylor expanded in z around inf
mul-1-negN/A
lower-neg.f6465.2
Applied rewrites65.2%
if -7.1999999999999999e140 < z < 1.44999999999999986e-51Initial program 99.8%
Taylor expanded in y around inf
mul-1-negN/A
lower-neg.f6447.0
Applied rewrites47.0%
(FPCore (x y z) :precision binary64 (- (- z) y))
double code(double x, double y, double z) {
return -z - y;
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = -z - y
end function
public static double code(double x, double y, double z) {
return -z - y;
}
def code(x, y, z): return -z - y
function code(x, y, z) return Float64(Float64(-z) - y) end
function tmp = code(x, y, z) tmp = -z - y; end
code[x_, y_, z_] := N[((-z) - y), $MachinePrecision]
\begin{array}{l}
\\
\left(-z\right) - y
\end{array}
Initial program 99.9%
Taylor expanded in z around inf
mul-1-negN/A
lower-neg.f6466.9
Applied rewrites66.9%
(FPCore (x y z) :precision binary64 (- y))
double code(double x, double y, double z) {
return -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
end function
public static double code(double x, double y, double z) {
return -y;
}
def code(x, y, z): return -y
function code(x, y, z) return Float64(-y) end
function tmp = code(x, y, z) tmp = -y; end
code[x_, y_, z_] := (-y)
\begin{array}{l}
\\
-y
\end{array}
Initial program 99.9%
Taylor expanded in y around inf
mul-1-negN/A
lower-neg.f6433.1
Applied rewrites33.1%
herbie shell --seed 2024259
(FPCore (x y z)
:name "Statistics.Distribution.Poisson:$clogProbability from math-functions-0.1.5.2"
:precision binary64
(- (- (* x (log y)) z) y))