
(FPCore (x y) :precision binary64 (+ (- (* x (- y 1.0)) (* y 0.5)) 0.918938533204673))
double code(double x, double y) {
return ((x * (y - 1.0)) - (y * 0.5)) + 0.918938533204673;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = ((x * (y - 1.0d0)) - (y * 0.5d0)) + 0.918938533204673d0
end function
public static double code(double x, double y) {
return ((x * (y - 1.0)) - (y * 0.5)) + 0.918938533204673;
}
def code(x, y): return ((x * (y - 1.0)) - (y * 0.5)) + 0.918938533204673
function code(x, y) return Float64(Float64(Float64(x * Float64(y - 1.0)) - Float64(y * 0.5)) + 0.918938533204673) end
function tmp = code(x, y) tmp = ((x * (y - 1.0)) - (y * 0.5)) + 0.918938533204673; end
code[x_, y_] := N[(N[(N[(x * N[(y - 1.0), $MachinePrecision]), $MachinePrecision] - N[(y * 0.5), $MachinePrecision]), $MachinePrecision] + 0.918938533204673), $MachinePrecision]
\begin{array}{l}
\\
\left(x \cdot \left(y - 1\right) - y \cdot 0.5\right) + 0.918938533204673
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 12 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y) :precision binary64 (+ (- (* x (- y 1.0)) (* y 0.5)) 0.918938533204673))
double code(double x, double y) {
return ((x * (y - 1.0)) - (y * 0.5)) + 0.918938533204673;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = ((x * (y - 1.0d0)) - (y * 0.5d0)) + 0.918938533204673d0
end function
public static double code(double x, double y) {
return ((x * (y - 1.0)) - (y * 0.5)) + 0.918938533204673;
}
def code(x, y): return ((x * (y - 1.0)) - (y * 0.5)) + 0.918938533204673
function code(x, y) return Float64(Float64(Float64(x * Float64(y - 1.0)) - Float64(y * 0.5)) + 0.918938533204673) end
function tmp = code(x, y) tmp = ((x * (y - 1.0)) - (y * 0.5)) + 0.918938533204673; end
code[x_, y_] := N[(N[(N[(x * N[(y - 1.0), $MachinePrecision]), $MachinePrecision] - N[(y * 0.5), $MachinePrecision]), $MachinePrecision] + 0.918938533204673), $MachinePrecision]
\begin{array}{l}
\\
\left(x \cdot \left(y - 1\right) - y \cdot 0.5\right) + 0.918938533204673
\end{array}
(FPCore (x y) :precision binary64 (fma (- x 0.5) y (- 0.918938533204673 x)))
double code(double x, double y) {
return fma((x - 0.5), y, (0.918938533204673 - x));
}
function code(x, y) return fma(Float64(x - 0.5), y, Float64(0.918938533204673 - x)) end
code[x_, y_] := N[(N[(x - 0.5), $MachinePrecision] * y + N[(0.918938533204673 - x), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}
\\
\mathsf{fma}\left(x - 0.5, y, 0.918938533204673 - x\right)
\end{array}
Initial program 100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
(FPCore (x y)
:precision binary64
(if (<= y -6.7e+90)
(* -0.5 y)
(if (<= y -14.2)
(* y x)
(if (<= y 1.32)
(- 0.918938533204673 x)
(if (or (<= y 3.1e+68)
(not (or (<= y 4.7e+141) (not (<= y 2.95e+262)))))
(* y x)
(* -0.5 y))))))
double code(double x, double y) {
double tmp;
if (y <= -6.7e+90) {
tmp = -0.5 * y;
} else if (y <= -14.2) {
tmp = y * x;
} else if (y <= 1.32) {
tmp = 0.918938533204673 - x;
} else if ((y <= 3.1e+68) || !((y <= 4.7e+141) || !(y <= 2.95e+262))) {
tmp = y * x;
} else {
tmp = -0.5 * y;
}
return tmp;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if (y <= (-6.7d+90)) then
tmp = (-0.5d0) * y
else if (y <= (-14.2d0)) then
tmp = y * x
else if (y <= 1.32d0) then
tmp = 0.918938533204673d0 - x
else if ((y <= 3.1d+68) .or. (.not. (y <= 4.7d+141) .or. (.not. (y <= 2.95d+262)))) then
tmp = y * x
else
tmp = (-0.5d0) * y
end if
code = tmp
end function
public static double code(double x, double y) {
double tmp;
if (y <= -6.7e+90) {
tmp = -0.5 * y;
} else if (y <= -14.2) {
tmp = y * x;
} else if (y <= 1.32) {
tmp = 0.918938533204673 - x;
} else if ((y <= 3.1e+68) || !((y <= 4.7e+141) || !(y <= 2.95e+262))) {
tmp = y * x;
} else {
tmp = -0.5 * y;
}
return tmp;
}
def code(x, y): tmp = 0 if y <= -6.7e+90: tmp = -0.5 * y elif y <= -14.2: tmp = y * x elif y <= 1.32: tmp = 0.918938533204673 - x elif (y <= 3.1e+68) or not ((y <= 4.7e+141) or not (y <= 2.95e+262)): tmp = y * x else: tmp = -0.5 * y return tmp
function code(x, y) tmp = 0.0 if (y <= -6.7e+90) tmp = Float64(-0.5 * y); elseif (y <= -14.2) tmp = Float64(y * x); elseif (y <= 1.32) tmp = Float64(0.918938533204673 - x); elseif ((y <= 3.1e+68) || !((y <= 4.7e+141) || !(y <= 2.95e+262))) tmp = Float64(y * x); else tmp = Float64(-0.5 * y); end return tmp end
function tmp_2 = code(x, y) tmp = 0.0; if (y <= -6.7e+90) tmp = -0.5 * y; elseif (y <= -14.2) tmp = y * x; elseif (y <= 1.32) tmp = 0.918938533204673 - x; elseif ((y <= 3.1e+68) || ~(((y <= 4.7e+141) || ~((y <= 2.95e+262))))) tmp = y * x; else tmp = -0.5 * y; end tmp_2 = tmp; end
code[x_, y_] := If[LessEqual[y, -6.7e+90], N[(-0.5 * y), $MachinePrecision], If[LessEqual[y, -14.2], N[(y * x), $MachinePrecision], If[LessEqual[y, 1.32], N[(0.918938533204673 - x), $MachinePrecision], If[Or[LessEqual[y, 3.1e+68], N[Not[Or[LessEqual[y, 4.7e+141], N[Not[LessEqual[y, 2.95e+262]], $MachinePrecision]]], $MachinePrecision]], N[(y * x), $MachinePrecision], N[(-0.5 * y), $MachinePrecision]]]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq -6.7 \cdot 10^{+90}:\\
\;\;\;\;-0.5 \cdot y\\
\mathbf{elif}\;y \leq -14.2:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.32:\\
\;\;\;\;0.918938533204673 - x\\
\mathbf{elif}\;y \leq 3.1 \cdot 10^{+68} \lor \neg \left(y \leq 4.7 \cdot 10^{+141} \lor \neg \left(y \leq 2.95 \cdot 10^{+262}\right)\right):\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;-0.5 \cdot y\\
\end{array}
\end{array}
if y < -6.7000000000000003e90 or 3.0999999999999998e68 < y < 4.69999999999999979e141 or 2.94999999999999994e262 < y Initial program 100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in y around -inf
mul-1-negN/A
distribute-rgt-neg-inN/A
+-commutativeN/A
mul-1-negN/A
neg-sub0N/A
associate-+l-N/A
neg-sub0N/A
remove-double-negN/A
*-commutativeN/A
lower-*.f64N/A
lower--.f64100.0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites71.1%
if -6.7000000000000003e90 < y < -14.199999999999999 or 1.32000000000000006 < y < 3.0999999999999998e68 or 4.69999999999999979e141 < y < 2.94999999999999994e262Initial program 100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites96.4%
Taylor expanded in y around -inf
mul-1-negN/A
distribute-rgt-neg-inN/A
+-commutativeN/A
mul-1-negN/A
neg-sub0N/A
associate-+l-N/A
neg-sub0N/A
remove-double-negN/A
*-commutativeN/A
lower-*.f64N/A
lower--.f6495.4
Applied rewrites95.4%
Taylor expanded in x around inf
Applied rewrites70.3%
if -14.199999999999999 < y < 1.32000000000000006Initial program 100.0%
Taylor expanded in y around 0
mul-1-negN/A
unsub-negN/A
lower--.f6497.7
Applied rewrites97.7%
Final simplification84.9%
(FPCore (x y)
:precision binary64
(if (<= y -2.2e-15)
(fma -0.5 y 0.918938533204673)
(if (<= y 1.32)
(- 0.918938533204673 x)
(if (or (<= y 3.1e+68) (not (or (<= y 4.7e+141) (not (<= y 2.95e+262)))))
(* y x)
(* -0.5 y)))))
double code(double x, double y) {
double tmp;
if (y <= -2.2e-15) {
tmp = fma(-0.5, y, 0.918938533204673);
} else if (y <= 1.32) {
tmp = 0.918938533204673 - x;
} else if ((y <= 3.1e+68) || !((y <= 4.7e+141) || !(y <= 2.95e+262))) {
tmp = y * x;
} else {
tmp = -0.5 * y;
}
return tmp;
}
function code(x, y) tmp = 0.0 if (y <= -2.2e-15) tmp = fma(-0.5, y, 0.918938533204673); elseif (y <= 1.32) tmp = Float64(0.918938533204673 - x); elseif ((y <= 3.1e+68) || !((y <= 4.7e+141) || !(y <= 2.95e+262))) tmp = Float64(y * x); else tmp = Float64(-0.5 * y); end return tmp end
code[x_, y_] := If[LessEqual[y, -2.2e-15], N[(-0.5 * y + 0.918938533204673), $MachinePrecision], If[LessEqual[y, 1.32], N[(0.918938533204673 - x), $MachinePrecision], If[Or[LessEqual[y, 3.1e+68], N[Not[Or[LessEqual[y, 4.7e+141], N[Not[LessEqual[y, 2.95e+262]], $MachinePrecision]]], $MachinePrecision]], N[(y * x), $MachinePrecision], N[(-0.5 * y), $MachinePrecision]]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq -2.2 \cdot 10^{-15}:\\
\;\;\;\;\mathsf{fma}\left(-0.5, y, 0.918938533204673\right)\\
\mathbf{elif}\;y \leq 1.32:\\
\;\;\;\;0.918938533204673 - x\\
\mathbf{elif}\;y \leq 3.1 \cdot 10^{+68} \lor \neg \left(y \leq 4.7 \cdot 10^{+141} \lor \neg \left(y \leq 2.95 \cdot 10^{+262}\right)\right):\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;-0.5 \cdot y\\
\end{array}
\end{array}
if y < -2.19999999999999986e-15Initial program 100.0%
Taylor expanded in x around 0
sub-negN/A
+-commutativeN/A
distribute-lft-neg-inN/A
metadata-evalN/A
lower-fma.f6458.5
Applied rewrites58.5%
if -2.19999999999999986e-15 < y < 1.32000000000000006Initial program 100.0%
Taylor expanded in y around 0
mul-1-negN/A
unsub-negN/A
lower--.f6498.5
Applied rewrites98.5%
if 1.32000000000000006 < y < 3.0999999999999998e68 or 4.69999999999999979e141 < y < 2.94999999999999994e262Initial program 100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in y around -inf
mul-1-negN/A
distribute-rgt-neg-inN/A
+-commutativeN/A
mul-1-negN/A
neg-sub0N/A
associate-+l-N/A
neg-sub0N/A
remove-double-negN/A
*-commutativeN/A
lower-*.f64N/A
lower--.f6499.2
Applied rewrites99.2%
Taylor expanded in x around inf
Applied rewrites74.7%
if 3.0999999999999998e68 < y < 4.69999999999999979e141 or 2.94999999999999994e262 < y Initial program 100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in y around -inf
mul-1-negN/A
distribute-rgt-neg-inN/A
+-commutativeN/A
mul-1-negN/A
neg-sub0N/A
associate-+l-N/A
neg-sub0N/A
remove-double-negN/A
*-commutativeN/A
lower-*.f64N/A
lower--.f64100.0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites77.2%
Final simplification83.5%
(FPCore (x y) :precision binary64 (if (or (<= y -2.2e-15) (not (<= y 4.2e-18))) (fma (- x 0.5) y 0.918938533204673) (- 0.918938533204673 x)))
double code(double x, double y) {
double tmp;
if ((y <= -2.2e-15) || !(y <= 4.2e-18)) {
tmp = fma((x - 0.5), y, 0.918938533204673);
} else {
tmp = 0.918938533204673 - x;
}
return tmp;
}
function code(x, y) tmp = 0.0 if ((y <= -2.2e-15) || !(y <= 4.2e-18)) tmp = fma(Float64(x - 0.5), y, 0.918938533204673); else tmp = Float64(0.918938533204673 - x); end return tmp end
code[x_, y_] := If[Or[LessEqual[y, -2.2e-15], N[Not[LessEqual[y, 4.2e-18]], $MachinePrecision]], N[(N[(x - 0.5), $MachinePrecision] * y + 0.918938533204673), $MachinePrecision], N[(0.918938533204673 - x), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq -2.2 \cdot 10^{-15} \lor \neg \left(y \leq 4.2 \cdot 10^{-18}\right):\\
\;\;\;\;\mathsf{fma}\left(x - 0.5, y, 0.918938533204673\right)\\
\mathbf{else}:\\
\;\;\;\;0.918938533204673 - x\\
\end{array}
\end{array}
if y < -2.19999999999999986e-15 or 4.19999999999999999e-18 < y Initial program 100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites97.6%
if -2.19999999999999986e-15 < y < 4.19999999999999999e-18Initial program 100.0%
Taylor expanded in y around 0
mul-1-negN/A
unsub-negN/A
lower--.f64100.0
Applied rewrites100.0%
Final simplification98.8%
(FPCore (x y)
:precision binary64
(if (<= y -0.041)
(fma (- x 0.5) y (- x))
(if (<= y 4.2e-18)
(- 0.918938533204673 x)
(fma (- x 0.5) y 0.918938533204673))))
double code(double x, double y) {
double tmp;
if (y <= -0.041) {
tmp = fma((x - 0.5), y, -x);
} else if (y <= 4.2e-18) {
tmp = 0.918938533204673 - x;
} else {
tmp = fma((x - 0.5), y, 0.918938533204673);
}
return tmp;
}
function code(x, y) tmp = 0.0 if (y <= -0.041) tmp = fma(Float64(x - 0.5), y, Float64(-x)); elseif (y <= 4.2e-18) tmp = Float64(0.918938533204673 - x); else tmp = fma(Float64(x - 0.5), y, 0.918938533204673); end return tmp end
code[x_, y_] := If[LessEqual[y, -0.041], N[(N[(x - 0.5), $MachinePrecision] * y + (-x)), $MachinePrecision], If[LessEqual[y, 4.2e-18], N[(0.918938533204673 - x), $MachinePrecision], N[(N[(x - 0.5), $MachinePrecision] * y + 0.918938533204673), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq -0.041:\\
\;\;\;\;\mathsf{fma}\left(x - 0.5, y, -x\right)\\
\mathbf{elif}\;y \leq 4.2 \cdot 10^{-18}:\\
\;\;\;\;0.918938533204673 - x\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(x - 0.5, y, 0.918938533204673\right)\\
\end{array}
\end{array}
if y < -0.0410000000000000017Initial program 100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in x around inf
Applied rewrites99.4%
if -0.0410000000000000017 < y < 4.19999999999999999e-18Initial program 100.0%
Taylor expanded in y around 0
mul-1-negN/A
unsub-negN/A
lower--.f6499.1
Applied rewrites99.1%
if 4.19999999999999999e-18 < y Initial program 100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites98.6%
(FPCore (x y) :precision binary64 (if (or (<= x -0.72) (not (<= x 0.78))) (* (- y 1.0) x) (fma -0.5 y 0.918938533204673)))
double code(double x, double y) {
double tmp;
if ((x <= -0.72) || !(x <= 0.78)) {
tmp = (y - 1.0) * x;
} else {
tmp = fma(-0.5, y, 0.918938533204673);
}
return tmp;
}
function code(x, y) tmp = 0.0 if ((x <= -0.72) || !(x <= 0.78)) tmp = Float64(Float64(y - 1.0) * x); else tmp = fma(-0.5, y, 0.918938533204673); end return tmp end
code[x_, y_] := If[Or[LessEqual[x, -0.72], N[Not[LessEqual[x, 0.78]], $MachinePrecision]], N[(N[(y - 1.0), $MachinePrecision] * x), $MachinePrecision], N[(-0.5 * y + 0.918938533204673), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -0.72 \lor \neg \left(x \leq 0.78\right):\\
\;\;\;\;\left(y - 1\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-0.5, y, 0.918938533204673\right)\\
\end{array}
\end{array}
if x < -0.71999999999999997 or 0.78000000000000003 < x Initial program 100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites49.2%
Taylor expanded in x around inf
*-commutativeN/A
lower-*.f64N/A
lower--.f6497.6
Applied rewrites97.6%
if -0.71999999999999997 < x < 0.78000000000000003Initial program 100.0%
Taylor expanded in x around 0
sub-negN/A
+-commutativeN/A
distribute-lft-neg-inN/A
metadata-evalN/A
lower-fma.f6498.7
Applied rewrites98.7%
Final simplification98.1%
(FPCore (x y) :precision binary64 (if (or (<= y -1.52) (not (<= y 1.55))) (* (- x 0.5) y) (- 0.918938533204673 x)))
double code(double x, double y) {
double tmp;
if ((y <= -1.52) || !(y <= 1.55)) {
tmp = (x - 0.5) * y;
} else {
tmp = 0.918938533204673 - x;
}
return tmp;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if ((y <= (-1.52d0)) .or. (.not. (y <= 1.55d0))) then
tmp = (x - 0.5d0) * y
else
tmp = 0.918938533204673d0 - x
end if
code = tmp
end function
public static double code(double x, double y) {
double tmp;
if ((y <= -1.52) || !(y <= 1.55)) {
tmp = (x - 0.5) * y;
} else {
tmp = 0.918938533204673 - x;
}
return tmp;
}
def code(x, y): tmp = 0 if (y <= -1.52) or not (y <= 1.55): tmp = (x - 0.5) * y else: tmp = 0.918938533204673 - x return tmp
function code(x, y) tmp = 0.0 if ((y <= -1.52) || !(y <= 1.55)) tmp = Float64(Float64(x - 0.5) * y); else tmp = Float64(0.918938533204673 - x); end return tmp end
function tmp_2 = code(x, y) tmp = 0.0; if ((y <= -1.52) || ~((y <= 1.55))) tmp = (x - 0.5) * y; else tmp = 0.918938533204673 - x; end tmp_2 = tmp; end
code[x_, y_] := If[Or[LessEqual[y, -1.52], N[Not[LessEqual[y, 1.55]], $MachinePrecision]], N[(N[(x - 0.5), $MachinePrecision] * y), $MachinePrecision], N[(0.918938533204673 - x), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq -1.52 \lor \neg \left(y \leq 1.55\right):\\
\;\;\;\;\left(x - 0.5\right) \cdot y\\
\mathbf{else}:\\
\;\;\;\;0.918938533204673 - x\\
\end{array}
\end{array}
if y < -1.52 or 1.55000000000000004 < y Initial program 100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites98.2%
Taylor expanded in y around -inf
mul-1-negN/A
distribute-rgt-neg-inN/A
+-commutativeN/A
mul-1-negN/A
neg-sub0N/A
associate-+l-N/A
neg-sub0N/A
remove-double-negN/A
*-commutativeN/A
lower-*.f64N/A
lower--.f6497.7
Applied rewrites97.7%
if -1.52 < y < 1.55000000000000004Initial program 100.0%
Taylor expanded in y around 0
mul-1-negN/A
unsub-negN/A
lower--.f6497.7
Applied rewrites97.7%
Final simplification97.7%
(FPCore (x y) :precision binary64 (if (<= x -0.72) (* (- y 1.0) x) (if (<= x 0.78) (fma -0.5 y 0.918938533204673) (fma y x (- x)))))
double code(double x, double y) {
double tmp;
if (x <= -0.72) {
tmp = (y - 1.0) * x;
} else if (x <= 0.78) {
tmp = fma(-0.5, y, 0.918938533204673);
} else {
tmp = fma(y, x, -x);
}
return tmp;
}
function code(x, y) tmp = 0.0 if (x <= -0.72) tmp = Float64(Float64(y - 1.0) * x); elseif (x <= 0.78) tmp = fma(-0.5, y, 0.918938533204673); else tmp = fma(y, x, Float64(-x)); end return tmp end
code[x_, y_] := If[LessEqual[x, -0.72], N[(N[(y - 1.0), $MachinePrecision] * x), $MachinePrecision], If[LessEqual[x, 0.78], N[(-0.5 * y + 0.918938533204673), $MachinePrecision], N[(y * x + (-x)), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -0.72:\\
\;\;\;\;\left(y - 1\right) \cdot x\\
\mathbf{elif}\;x \leq 0.78:\\
\;\;\;\;\mathsf{fma}\left(-0.5, y, 0.918938533204673\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(y, x, -x\right)\\
\end{array}
\end{array}
if x < -0.71999999999999997Initial program 100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites50.4%
Taylor expanded in x around inf
*-commutativeN/A
lower-*.f64N/A
lower--.f6497.1
Applied rewrites97.1%
if -0.71999999999999997 < x < 0.78000000000000003Initial program 100.0%
Taylor expanded in x around 0
sub-negN/A
+-commutativeN/A
distribute-lft-neg-inN/A
metadata-evalN/A
lower-fma.f6498.7
Applied rewrites98.7%
if 0.78000000000000003 < x Initial program 99.9%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites47.8%
Taylor expanded in x around inf
*-commutativeN/A
lower-*.f64N/A
lower--.f6498.2
Applied rewrites98.2%
Applied rewrites98.2%
(FPCore (x y) :precision binary64 (if (or (<= y -14.2) (not (<= y 1.32))) (* y x) (- 0.918938533204673 x)))
double code(double x, double y) {
double tmp;
if ((y <= -14.2) || !(y <= 1.32)) {
tmp = y * x;
} else {
tmp = 0.918938533204673 - x;
}
return tmp;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if ((y <= (-14.2d0)) .or. (.not. (y <= 1.32d0))) then
tmp = y * x
else
tmp = 0.918938533204673d0 - x
end if
code = tmp
end function
public static double code(double x, double y) {
double tmp;
if ((y <= -14.2) || !(y <= 1.32)) {
tmp = y * x;
} else {
tmp = 0.918938533204673 - x;
}
return tmp;
}
def code(x, y): tmp = 0 if (y <= -14.2) or not (y <= 1.32): tmp = y * x else: tmp = 0.918938533204673 - x return tmp
function code(x, y) tmp = 0.0 if ((y <= -14.2) || !(y <= 1.32)) tmp = Float64(y * x); else tmp = Float64(0.918938533204673 - x); end return tmp end
function tmp_2 = code(x, y) tmp = 0.0; if ((y <= -14.2) || ~((y <= 1.32))) tmp = y * x; else tmp = 0.918938533204673 - x; end tmp_2 = tmp; end
code[x_, y_] := If[Or[LessEqual[y, -14.2], N[Not[LessEqual[y, 1.32]], $MachinePrecision]], N[(y * x), $MachinePrecision], N[(0.918938533204673 - x), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;y \leq -14.2 \lor \neg \left(y \leq 1.32\right):\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;0.918938533204673 - x\\
\end{array}
\end{array}
if y < -14.199999999999999 or 1.32000000000000006 < y Initial program 100.0%
Taylor expanded in x around 0
Applied rewrites100.0%
Taylor expanded in x around 0
Applied rewrites98.2%
Taylor expanded in y around -inf
mul-1-negN/A
distribute-rgt-neg-inN/A
+-commutativeN/A
mul-1-negN/A
neg-sub0N/A
associate-+l-N/A
neg-sub0N/A
remove-double-negN/A
*-commutativeN/A
lower-*.f64N/A
lower--.f6497.7
Applied rewrites97.7%
Taylor expanded in x around inf
Applied rewrites49.9%
if -14.199999999999999 < y < 1.32000000000000006Initial program 100.0%
Taylor expanded in y around 0
mul-1-negN/A
unsub-negN/A
lower--.f6497.7
Applied rewrites97.7%
Final simplification75.1%
(FPCore (x y) :precision binary64 (if (or (<= x -1.8) (not (<= x 0.92))) (- x) 0.918938533204673))
double code(double x, double y) {
double tmp;
if ((x <= -1.8) || !(x <= 0.92)) {
tmp = -x;
} else {
tmp = 0.918938533204673;
}
return tmp;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if ((x <= (-1.8d0)) .or. (.not. (x <= 0.92d0))) then
tmp = -x
else
tmp = 0.918938533204673d0
end if
code = tmp
end function
public static double code(double x, double y) {
double tmp;
if ((x <= -1.8) || !(x <= 0.92)) {
tmp = -x;
} else {
tmp = 0.918938533204673;
}
return tmp;
}
def code(x, y): tmp = 0 if (x <= -1.8) or not (x <= 0.92): tmp = -x else: tmp = 0.918938533204673 return tmp
function code(x, y) tmp = 0.0 if ((x <= -1.8) || !(x <= 0.92)) tmp = Float64(-x); else tmp = 0.918938533204673; end return tmp end
function tmp_2 = code(x, y) tmp = 0.0; if ((x <= -1.8) || ~((x <= 0.92))) tmp = -x; else tmp = 0.918938533204673; end tmp_2 = tmp; end
code[x_, y_] := If[Or[LessEqual[x, -1.8], N[Not[LessEqual[x, 0.92]], $MachinePrecision]], (-x), 0.918938533204673]
\begin{array}{l}
\\
\begin{array}{l}
\mathbf{if}\;x \leq -1.8 \lor \neg \left(x \leq 0.92\right):\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;0.918938533204673\\
\end{array}
\end{array}
if x < -1.80000000000000004 or 0.92000000000000004 < x Initial program 100.0%
Taylor expanded in y around 0
mul-1-negN/A
unsub-negN/A
lower--.f6452.7
Applied rewrites52.7%
Taylor expanded in x around inf
Applied rewrites51.2%
if -1.80000000000000004 < x < 0.92000000000000004Initial program 100.0%
Taylor expanded in y around 0
mul-1-negN/A
unsub-negN/A
lower--.f6453.4
Applied rewrites53.4%
Taylor expanded in x around 0
Applied rewrites52.5%
Final simplification51.9%
(FPCore (x y) :precision binary64 (- 0.918938533204673 x))
double code(double x, double y) {
return 0.918938533204673 - x;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = 0.918938533204673d0 - x
end function
public static double code(double x, double y) {
return 0.918938533204673 - x;
}
def code(x, y): return 0.918938533204673 - x
function code(x, y) return Float64(0.918938533204673 - x) end
function tmp = code(x, y) tmp = 0.918938533204673 - x; end
code[x_, y_] := N[(0.918938533204673 - x), $MachinePrecision]
\begin{array}{l}
\\
0.918938533204673 - x
\end{array}
Initial program 100.0%
Taylor expanded in y around 0
mul-1-negN/A
unsub-negN/A
lower--.f6453.0
Applied rewrites53.0%
(FPCore (x y) :precision binary64 0.918938533204673)
double code(double x, double y) {
return 0.918938533204673;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = 0.918938533204673d0
end function
public static double code(double x, double y) {
return 0.918938533204673;
}
def code(x, y): return 0.918938533204673
function code(x, y) return 0.918938533204673 end
function tmp = code(x, y) tmp = 0.918938533204673; end
code[x_, y_] := 0.918938533204673
\begin{array}{l}
\\
0.918938533204673
\end{array}
Initial program 100.0%
Taylor expanded in y around 0
mul-1-negN/A
unsub-negN/A
lower--.f6453.0
Applied rewrites53.0%
Taylor expanded in x around 0
Applied rewrites28.1%
herbie shell --seed 2024313
(FPCore (x y)
:name "Numeric.SpecFunctions:logGamma from math-functions-0.1.5.2, A"
:precision binary64
(+ (- (* x (- y 1.0)) (* y 0.5)) 0.918938533204673))