
(FPCore (x y) :precision binary64 (let* ((t_0 (/ x (* y 2.0)))) (/ (tan t_0) (sin t_0))))
double code(double x, double y) {
double t_0 = x / (y * 2.0);
return tan(t_0) / sin(t_0);
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: t_0
t_0 = x / (y * 2.0d0)
code = tan(t_0) / sin(t_0)
end function
public static double code(double x, double y) {
double t_0 = x / (y * 2.0);
return Math.tan(t_0) / Math.sin(t_0);
}
def code(x, y): t_0 = x / (y * 2.0) return math.tan(t_0) / math.sin(t_0)
function code(x, y) t_0 = Float64(x / Float64(y * 2.0)) return Float64(tan(t_0) / sin(t_0)) end
function tmp = code(x, y) t_0 = x / (y * 2.0); tmp = tan(t_0) / sin(t_0); end
code[x_, y_] := Block[{t$95$0 = N[(x / N[(y * 2.0), $MachinePrecision]), $MachinePrecision]}, N[(N[Tan[t$95$0], $MachinePrecision] / N[Sin[t$95$0], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{x}{y \cdot 2}\\
\frac{\tan t\_0}{\sin t\_0}
\end{array}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 6 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x y) :precision binary64 (let* ((t_0 (/ x (* y 2.0)))) (/ (tan t_0) (sin t_0))))
double code(double x, double y) {
double t_0 = x / (y * 2.0);
return tan(t_0) / sin(t_0);
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: t_0
t_0 = x / (y * 2.0d0)
code = tan(t_0) / sin(t_0)
end function
public static double code(double x, double y) {
double t_0 = x / (y * 2.0);
return Math.tan(t_0) / Math.sin(t_0);
}
def code(x, y): t_0 = x / (y * 2.0) return math.tan(t_0) / math.sin(t_0)
function code(x, y) t_0 = Float64(x / Float64(y * 2.0)) return Float64(tan(t_0) / sin(t_0)) end
function tmp = code(x, y) t_0 = x / (y * 2.0); tmp = tan(t_0) / sin(t_0); end
code[x_, y_] := Block[{t$95$0 = N[(x / N[(y * 2.0), $MachinePrecision]), $MachinePrecision]}, N[(N[Tan[t$95$0], $MachinePrecision] / N[Sin[t$95$0], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{x}{y \cdot 2}\\
\frac{\tan t\_0}{\sin t\_0}
\end{array}
\end{array}
x_m = (fabs.f64 x) y_m = (fabs.f64 y) (FPCore (x_m y_m) :precision binary64 (if (<= (/ x_m (* y_m 2.0)) 5e+136) (/ 1.0 (cos (/ (/ (* x_m -0.5) (pow (cbrt y_m) 2.0)) (cbrt y_m)))) (* 0.5 (pow (cbrt 2.0) 3.0))))
x_m = fabs(x);
y_m = fabs(y);
double code(double x_m, double y_m) {
double tmp;
if ((x_m / (y_m * 2.0)) <= 5e+136) {
tmp = 1.0 / cos((((x_m * -0.5) / pow(cbrt(y_m), 2.0)) / cbrt(y_m)));
} else {
tmp = 0.5 * pow(cbrt(2.0), 3.0);
}
return tmp;
}
x_m = Math.abs(x);
y_m = Math.abs(y);
public static double code(double x_m, double y_m) {
double tmp;
if ((x_m / (y_m * 2.0)) <= 5e+136) {
tmp = 1.0 / Math.cos((((x_m * -0.5) / Math.pow(Math.cbrt(y_m), 2.0)) / Math.cbrt(y_m)));
} else {
tmp = 0.5 * Math.pow(Math.cbrt(2.0), 3.0);
}
return tmp;
}
x_m = abs(x) y_m = abs(y) function code(x_m, y_m) tmp = 0.0 if (Float64(x_m / Float64(y_m * 2.0)) <= 5e+136) tmp = Float64(1.0 / cos(Float64(Float64(Float64(x_m * -0.5) / (cbrt(y_m) ^ 2.0)) / cbrt(y_m)))); else tmp = Float64(0.5 * (cbrt(2.0) ^ 3.0)); end return tmp end
x_m = N[Abs[x], $MachinePrecision] y_m = N[Abs[y], $MachinePrecision] code[x$95$m_, y$95$m_] := If[LessEqual[N[(x$95$m / N[(y$95$m * 2.0), $MachinePrecision]), $MachinePrecision], 5e+136], N[(1.0 / N[Cos[N[(N[(N[(x$95$m * -0.5), $MachinePrecision] / N[Power[N[Power[y$95$m, 1/3], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] / N[Power[y$95$m, 1/3], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(0.5 * N[Power[N[Power[2.0, 1/3], $MachinePrecision], 3.0], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
x_m = \left|x\right|
\\
y_m = \left|y\right|
\\
\begin{array}{l}
\mathbf{if}\;\frac{x\_m}{y\_m \cdot 2} \leq 5 \cdot 10^{+136}:\\
\;\;\;\;\frac{1}{\cos \left(\frac{\frac{x\_m \cdot -0.5}{{\left(\sqrt[3]{y\_m}\right)}^{2}}}{\sqrt[3]{y\_m}}\right)}\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot {\left(\sqrt[3]{2}\right)}^{3}\\
\end{array}
\end{array}
if (/.f64 x (*.f64 y #s(literal 2 binary64))) < 5.0000000000000002e136Initial program 41.6%
remove-double-neg41.6%
distribute-frac-neg41.6%
tan-neg41.6%
distribute-frac-neg241.6%
distribute-lft-neg-out41.6%
distribute-frac-neg241.6%
distribute-lft-neg-out41.6%
distribute-frac-neg241.6%
distribute-frac-neg41.6%
neg-mul-141.6%
*-commutative41.6%
associate-/l*41.5%
*-commutative41.5%
associate-/r*41.5%
metadata-eval41.5%
sin-neg41.5%
distribute-frac-neg41.5%
Simplified41.3%
Taylor expanded in x around inf 57.7%
associate-*r/57.7%
*-commutative57.7%
associate-*r/57.5%
Simplified57.5%
associate-*r/57.7%
add-cube-cbrt58.3%
associate-/r*58.3%
pow258.3%
Applied egg-rr58.3%
if 5.0000000000000002e136 < (/.f64 x (*.f64 y #s(literal 2 binary64))) Initial program 6.1%
add-cube-cbrt5.7%
pow35.8%
Applied egg-rr5.8%
Taylor expanded in x around 0 11.7%
x_m = (fabs.f64 x) y_m = (fabs.f64 y) (FPCore (x_m y_m) :precision binary64 (let* ((t_0 (* 0.5 (/ x_m y_m))) (t_1 (pow t_0 0.16666666666666666))) (/ 1.0 (cos (* t_1 (* t_1 (pow (cbrt t_0) 2.0)))))))
x_m = fabs(x);
y_m = fabs(y);
double code(double x_m, double y_m) {
double t_0 = 0.5 * (x_m / y_m);
double t_1 = pow(t_0, 0.16666666666666666);
return 1.0 / cos((t_1 * (t_1 * pow(cbrt(t_0), 2.0))));
}
x_m = Math.abs(x);
y_m = Math.abs(y);
public static double code(double x_m, double y_m) {
double t_0 = 0.5 * (x_m / y_m);
double t_1 = Math.pow(t_0, 0.16666666666666666);
return 1.0 / Math.cos((t_1 * (t_1 * Math.pow(Math.cbrt(t_0), 2.0))));
}
x_m = abs(x) y_m = abs(y) function code(x_m, y_m) t_0 = Float64(0.5 * Float64(x_m / y_m)) t_1 = t_0 ^ 0.16666666666666666 return Float64(1.0 / cos(Float64(t_1 * Float64(t_1 * (cbrt(t_0) ^ 2.0))))) end
x_m = N[Abs[x], $MachinePrecision]
y_m = N[Abs[y], $MachinePrecision]
code[x$95$m_, y$95$m_] := Block[{t$95$0 = N[(0.5 * N[(x$95$m / y$95$m), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[Power[t$95$0, 0.16666666666666666], $MachinePrecision]}, N[(1.0 / N[Cos[N[(t$95$1 * N[(t$95$1 * N[Power[N[Power[t$95$0, 1/3], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
x_m = \left|x\right|
\\
y_m = \left|y\right|
\\
\begin{array}{l}
t_0 := 0.5 \cdot \frac{x\_m}{y\_m}\\
t_1 := {t\_0}^{0.16666666666666666}\\
\frac{1}{\cos \left(t\_1 \cdot \left(t\_1 \cdot {\left(\sqrt[3]{t\_0}\right)}^{2}\right)\right)}
\end{array}
\end{array}
Initial program 35.4%
remove-double-neg35.4%
distribute-frac-neg35.4%
tan-neg35.4%
distribute-frac-neg235.4%
distribute-lft-neg-out35.4%
distribute-frac-neg235.4%
distribute-lft-neg-out35.4%
distribute-frac-neg235.4%
distribute-frac-neg35.4%
neg-mul-135.4%
*-commutative35.4%
associate-/l*35.3%
*-commutative35.3%
associate-/r*35.3%
metadata-eval35.3%
sin-neg35.3%
distribute-frac-neg35.3%
Simplified35.2%
Taylor expanded in x around inf 48.6%
associate-*r/48.6%
*-commutative48.6%
associate-*r/48.5%
cos-neg48.5%
associate-*r/48.6%
distribute-frac-neg48.6%
distribute-rgt-neg-in48.6%
metadata-eval48.6%
Simplified48.6%
add-sqr-sqrt32.4%
pow232.4%
associate-/l*32.4%
Applied egg-rr32.4%
unpow232.4%
add-sqr-sqrt48.5%
rem-3cbrt-rft49.1%
add-sqr-sqrt32.5%
unpow232.5%
associate-*l*32.6%
pow1/332.4%
sqrt-pow132.5%
associate-*r/32.6%
*-commutative32.6%
associate-/l*32.6%
metadata-eval32.6%
pow1/332.9%
sqrt-pow132.9%
associate-*r/32.9%
*-commutative32.9%
associate-/l*32.9%
metadata-eval32.9%
add-sqr-sqrt32.9%
Applied egg-rr33.0%
x_m = (fabs.f64 x) y_m = (fabs.f64 y) (FPCore (x_m y_m) :precision binary64 (if (<= (/ x_m (* y_m 2.0)) 2e+167) (/ 1.0 (cos (pow (/ 1.0 (sqrt (* y_m (/ 2.0 x_m)))) 2.0))) (* 0.5 (pow (cbrt 2.0) 3.0))))
x_m = fabs(x);
y_m = fabs(y);
double code(double x_m, double y_m) {
double tmp;
if ((x_m / (y_m * 2.0)) <= 2e+167) {
tmp = 1.0 / cos(pow((1.0 / sqrt((y_m * (2.0 / x_m)))), 2.0));
} else {
tmp = 0.5 * pow(cbrt(2.0), 3.0);
}
return tmp;
}
x_m = Math.abs(x);
y_m = Math.abs(y);
public static double code(double x_m, double y_m) {
double tmp;
if ((x_m / (y_m * 2.0)) <= 2e+167) {
tmp = 1.0 / Math.cos(Math.pow((1.0 / Math.sqrt((y_m * (2.0 / x_m)))), 2.0));
} else {
tmp = 0.5 * Math.pow(Math.cbrt(2.0), 3.0);
}
return tmp;
}
x_m = abs(x) y_m = abs(y) function code(x_m, y_m) tmp = 0.0 if (Float64(x_m / Float64(y_m * 2.0)) <= 2e+167) tmp = Float64(1.0 / cos((Float64(1.0 / sqrt(Float64(y_m * Float64(2.0 / x_m)))) ^ 2.0))); else tmp = Float64(0.5 * (cbrt(2.0) ^ 3.0)); end return tmp end
x_m = N[Abs[x], $MachinePrecision] y_m = N[Abs[y], $MachinePrecision] code[x$95$m_, y$95$m_] := If[LessEqual[N[(x$95$m / N[(y$95$m * 2.0), $MachinePrecision]), $MachinePrecision], 2e+167], N[(1.0 / N[Cos[N[Power[N[(1.0 / N[Sqrt[N[(y$95$m * N[(2.0 / x$95$m), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], 2.0], $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(0.5 * N[Power[N[Power[2.0, 1/3], $MachinePrecision], 3.0], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
x_m = \left|x\right|
\\
y_m = \left|y\right|
\\
\begin{array}{l}
\mathbf{if}\;\frac{x\_m}{y\_m \cdot 2} \leq 2 \cdot 10^{+167}:\\
\;\;\;\;\frac{1}{\cos \left({\left(\frac{1}{\sqrt{y\_m \cdot \frac{2}{x\_m}}}\right)}^{2}\right)}\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot {\left(\sqrt[3]{2}\right)}^{3}\\
\end{array}
\end{array}
if (/.f64 x (*.f64 y #s(literal 2 binary64))) < 2.0000000000000001e167Initial program 40.8%
remove-double-neg40.8%
distribute-frac-neg40.8%
tan-neg40.8%
distribute-frac-neg240.8%
distribute-lft-neg-out40.8%
distribute-frac-neg240.8%
distribute-lft-neg-out40.8%
distribute-frac-neg240.8%
distribute-frac-neg40.8%
neg-mul-140.8%
*-commutative40.8%
associate-/l*40.6%
*-commutative40.6%
associate-/r*40.6%
metadata-eval40.6%
sin-neg40.6%
distribute-frac-neg40.6%
Simplified40.5%
Taylor expanded in x around inf 56.4%
associate-*r/56.4%
*-commutative56.4%
associate-*r/56.1%
cos-neg56.1%
associate-*r/56.4%
distribute-frac-neg56.4%
distribute-rgt-neg-in56.4%
metadata-eval56.4%
Simplified56.4%
add-sqr-sqrt37.2%
pow237.2%
associate-/l*37.2%
Applied egg-rr37.2%
sqrt-prod15.9%
metadata-eval15.9%
associate-/r*15.9%
*-commutative15.9%
sqrt-prod37.2%
div-inv37.2%
clear-num37.6%
sqrt-div29.5%
metadata-eval29.5%
associate-/l*29.4%
Applied egg-rr29.4%
if 2.0000000000000001e167 < (/.f64 x (*.f64 y #s(literal 2 binary64))) Initial program 4.3%
add-cube-cbrt4.5%
pow34.4%
Applied egg-rr4.4%
Taylor expanded in x around 0 11.7%
x_m = (fabs.f64 x) y_m = (fabs.f64 y) (FPCore (x_m y_m) :precision binary64 (if (<= (/ x_m (* y_m 2.0)) 5e+165) (/ 1.0 (cos (/ (/ 1.0 (/ 2.0 x_m)) y_m))) (* 0.5 (pow (cbrt 2.0) 3.0))))
x_m = fabs(x);
y_m = fabs(y);
double code(double x_m, double y_m) {
double tmp;
if ((x_m / (y_m * 2.0)) <= 5e+165) {
tmp = 1.0 / cos(((1.0 / (2.0 / x_m)) / y_m));
} else {
tmp = 0.5 * pow(cbrt(2.0), 3.0);
}
return tmp;
}
x_m = Math.abs(x);
y_m = Math.abs(y);
public static double code(double x_m, double y_m) {
double tmp;
if ((x_m / (y_m * 2.0)) <= 5e+165) {
tmp = 1.0 / Math.cos(((1.0 / (2.0 / x_m)) / y_m));
} else {
tmp = 0.5 * Math.pow(Math.cbrt(2.0), 3.0);
}
return tmp;
}
x_m = abs(x) y_m = abs(y) function code(x_m, y_m) tmp = 0.0 if (Float64(x_m / Float64(y_m * 2.0)) <= 5e+165) tmp = Float64(1.0 / cos(Float64(Float64(1.0 / Float64(2.0 / x_m)) / y_m))); else tmp = Float64(0.5 * (cbrt(2.0) ^ 3.0)); end return tmp end
x_m = N[Abs[x], $MachinePrecision] y_m = N[Abs[y], $MachinePrecision] code[x$95$m_, y$95$m_] := If[LessEqual[N[(x$95$m / N[(y$95$m * 2.0), $MachinePrecision]), $MachinePrecision], 5e+165], N[(1.0 / N[Cos[N[(N[(1.0 / N[(2.0 / x$95$m), $MachinePrecision]), $MachinePrecision] / y$95$m), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(0.5 * N[Power[N[Power[2.0, 1/3], $MachinePrecision], 3.0], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
x_m = \left|x\right|
\\
y_m = \left|y\right|
\\
\begin{array}{l}
\mathbf{if}\;\frac{x\_m}{y\_m \cdot 2} \leq 5 \cdot 10^{+165}:\\
\;\;\;\;\frac{1}{\cos \left(\frac{\frac{1}{\frac{2}{x\_m}}}{y\_m}\right)}\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot {\left(\sqrt[3]{2}\right)}^{3}\\
\end{array}
\end{array}
if (/.f64 x (*.f64 y #s(literal 2 binary64))) < 4.9999999999999997e165Initial program 40.9%
remove-double-neg40.9%
distribute-frac-neg40.9%
tan-neg40.9%
distribute-frac-neg240.9%
distribute-lft-neg-out40.9%
distribute-frac-neg240.9%
distribute-lft-neg-out40.9%
distribute-frac-neg240.9%
distribute-frac-neg40.9%
neg-mul-140.9%
*-commutative40.9%
associate-/l*40.8%
*-commutative40.8%
associate-/r*40.8%
metadata-eval40.8%
sin-neg40.8%
distribute-frac-neg40.8%
Simplified40.6%
Taylor expanded in x around inf 56.6%
associate-*r/56.6%
*-commutative56.6%
associate-*r/56.2%
cos-neg56.2%
associate-*r/56.6%
distribute-frac-neg56.6%
distribute-rgt-neg-in56.6%
metadata-eval56.6%
Simplified56.6%
add-sqr-sqrt37.4%
pow237.4%
associate-/l*37.3%
Applied egg-rr37.3%
unpow237.3%
add-sqr-sqrt56.2%
associate-*r/56.6%
clear-num56.0%
inv-pow56.0%
div-inv56.3%
unpow-prod-down56.4%
inv-pow56.4%
*-commutative56.4%
associate-/r*56.4%
metadata-eval56.4%
Applied egg-rr56.4%
associate-*l/57.0%
*-lft-identity57.0%
unpow-157.0%
Simplified57.0%
if 4.9999999999999997e165 < (/.f64 x (*.f64 y #s(literal 2 binary64))) Initial program 4.3%
add-cube-cbrt4.5%
pow34.3%
Applied egg-rr4.3%
Taylor expanded in x around 0 11.8%
x_m = (fabs.f64 x) y_m = (fabs.f64 y) (FPCore (x_m y_m) :precision binary64 (if (<= y_m 2.05e-98) 1.0 (/ 1.0 (cos (/ (/ 1.0 (/ 2.0 x_m)) y_m)))))
x_m = fabs(x);
y_m = fabs(y);
double code(double x_m, double y_m) {
double tmp;
if (y_m <= 2.05e-98) {
tmp = 1.0;
} else {
tmp = 1.0 / cos(((1.0 / (2.0 / x_m)) / y_m));
}
return tmp;
}
x_m = abs(x)
y_m = abs(y)
real(8) function code(x_m, y_m)
real(8), intent (in) :: x_m
real(8), intent (in) :: y_m
real(8) :: tmp
if (y_m <= 2.05d-98) then
tmp = 1.0d0
else
tmp = 1.0d0 / cos(((1.0d0 / (2.0d0 / x_m)) / y_m))
end if
code = tmp
end function
x_m = Math.abs(x);
y_m = Math.abs(y);
public static double code(double x_m, double y_m) {
double tmp;
if (y_m <= 2.05e-98) {
tmp = 1.0;
} else {
tmp = 1.0 / Math.cos(((1.0 / (2.0 / x_m)) / y_m));
}
return tmp;
}
x_m = math.fabs(x) y_m = math.fabs(y) def code(x_m, y_m): tmp = 0 if y_m <= 2.05e-98: tmp = 1.0 else: tmp = 1.0 / math.cos(((1.0 / (2.0 / x_m)) / y_m)) return tmp
x_m = abs(x) y_m = abs(y) function code(x_m, y_m) tmp = 0.0 if (y_m <= 2.05e-98) tmp = 1.0; else tmp = Float64(1.0 / cos(Float64(Float64(1.0 / Float64(2.0 / x_m)) / y_m))); end return tmp end
x_m = abs(x); y_m = abs(y); function tmp_2 = code(x_m, y_m) tmp = 0.0; if (y_m <= 2.05e-98) tmp = 1.0; else tmp = 1.0 / cos(((1.0 / (2.0 / x_m)) / y_m)); end tmp_2 = tmp; end
x_m = N[Abs[x], $MachinePrecision] y_m = N[Abs[y], $MachinePrecision] code[x$95$m_, y$95$m_] := If[LessEqual[y$95$m, 2.05e-98], 1.0, N[(1.0 / N[Cos[N[(N[(1.0 / N[(2.0 / x$95$m), $MachinePrecision]), $MachinePrecision] / y$95$m), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
x_m = \left|x\right|
\\
y_m = \left|y\right|
\\
\begin{array}{l}
\mathbf{if}\;y\_m \leq 2.05 \cdot 10^{-98}:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{\cos \left(\frac{\frac{1}{\frac{2}{x\_m}}}{y\_m}\right)}\\
\end{array}
\end{array}
if y < 2.0499999999999999e-98Initial program 26.8%
remove-double-neg26.8%
distribute-frac-neg26.8%
tan-neg26.8%
distribute-frac-neg226.8%
distribute-lft-neg-out26.8%
distribute-frac-neg226.8%
distribute-lft-neg-out26.8%
distribute-frac-neg226.8%
distribute-frac-neg26.8%
neg-mul-126.8%
*-commutative26.8%
associate-/l*26.8%
*-commutative26.8%
associate-/r*26.8%
metadata-eval26.8%
sin-neg26.8%
distribute-frac-neg26.8%
Simplified26.9%
Taylor expanded in x around 0 39.9%
if 2.0499999999999999e-98 < y Initial program 52.9%
remove-double-neg52.9%
distribute-frac-neg52.9%
tan-neg52.9%
distribute-frac-neg252.9%
distribute-lft-neg-out52.9%
distribute-frac-neg252.9%
distribute-lft-neg-out52.9%
distribute-frac-neg252.9%
distribute-frac-neg52.9%
neg-mul-152.9%
*-commutative52.9%
associate-/l*52.9%
*-commutative52.9%
associate-/r*52.9%
metadata-eval52.9%
sin-neg52.9%
distribute-frac-neg52.9%
Simplified52.4%
Taylor expanded in x around inf 70.7%
associate-*r/70.7%
*-commutative70.7%
associate-*r/70.2%
cos-neg70.2%
associate-*r/70.7%
distribute-frac-neg70.7%
distribute-rgt-neg-in70.7%
metadata-eval70.7%
Simplified70.7%
add-sqr-sqrt49.5%
pow249.5%
associate-/l*49.5%
Applied egg-rr49.5%
unpow249.5%
add-sqr-sqrt70.2%
associate-*r/70.7%
clear-num70.5%
inv-pow70.5%
div-inv70.9%
unpow-prod-down70.5%
inv-pow70.5%
*-commutative70.5%
associate-/r*70.5%
metadata-eval70.5%
Applied egg-rr70.5%
associate-*l/71.0%
*-lft-identity71.0%
unpow-171.0%
Simplified71.0%
x_m = (fabs.f64 x) y_m = (fabs.f64 y) (FPCore (x_m y_m) :precision binary64 1.0)
x_m = fabs(x);
y_m = fabs(y);
double code(double x_m, double y_m) {
return 1.0;
}
x_m = abs(x)
y_m = abs(y)
real(8) function code(x_m, y_m)
real(8), intent (in) :: x_m
real(8), intent (in) :: y_m
code = 1.0d0
end function
x_m = Math.abs(x);
y_m = Math.abs(y);
public static double code(double x_m, double y_m) {
return 1.0;
}
x_m = math.fabs(x) y_m = math.fabs(y) def code(x_m, y_m): return 1.0
x_m = abs(x) y_m = abs(y) function code(x_m, y_m) return 1.0 end
x_m = abs(x); y_m = abs(y); function tmp = code(x_m, y_m) tmp = 1.0; end
x_m = N[Abs[x], $MachinePrecision] y_m = N[Abs[y], $MachinePrecision] code[x$95$m_, y$95$m_] := 1.0
\begin{array}{l}
x_m = \left|x\right|
\\
y_m = \left|y\right|
\\
1
\end{array}
Initial program 35.4%
remove-double-neg35.4%
distribute-frac-neg35.4%
tan-neg35.4%
distribute-frac-neg235.4%
distribute-lft-neg-out35.4%
distribute-frac-neg235.4%
distribute-lft-neg-out35.4%
distribute-frac-neg235.4%
distribute-frac-neg35.4%
neg-mul-135.4%
*-commutative35.4%
associate-/l*35.3%
*-commutative35.3%
associate-/r*35.3%
metadata-eval35.3%
sin-neg35.3%
distribute-frac-neg35.3%
Simplified35.2%
Taylor expanded in x around 0 49.0%
(FPCore (x y)
:precision binary64
(let* ((t_0 (/ x (* y 2.0))) (t_1 (sin t_0)))
(if (< y -1.2303690911306994e+114)
1.0
(if (< y -9.102852406811914e-222)
(/ t_1 (* t_1 (log (exp (cos t_0)))))
1.0))))
double code(double x, double y) {
double t_0 = x / (y * 2.0);
double t_1 = sin(t_0);
double tmp;
if (y < -1.2303690911306994e+114) {
tmp = 1.0;
} else if (y < -9.102852406811914e-222) {
tmp = t_1 / (t_1 * log(exp(cos(t_0))));
} else {
tmp = 1.0;
}
return tmp;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: t_0
real(8) :: t_1
real(8) :: tmp
t_0 = x / (y * 2.0d0)
t_1 = sin(t_0)
if (y < (-1.2303690911306994d+114)) then
tmp = 1.0d0
else if (y < (-9.102852406811914d-222)) then
tmp = t_1 / (t_1 * log(exp(cos(t_0))))
else
tmp = 1.0d0
end if
code = tmp
end function
public static double code(double x, double y) {
double t_0 = x / (y * 2.0);
double t_1 = Math.sin(t_0);
double tmp;
if (y < -1.2303690911306994e+114) {
tmp = 1.0;
} else if (y < -9.102852406811914e-222) {
tmp = t_1 / (t_1 * Math.log(Math.exp(Math.cos(t_0))));
} else {
tmp = 1.0;
}
return tmp;
}
def code(x, y): t_0 = x / (y * 2.0) t_1 = math.sin(t_0) tmp = 0 if y < -1.2303690911306994e+114: tmp = 1.0 elif y < -9.102852406811914e-222: tmp = t_1 / (t_1 * math.log(math.exp(math.cos(t_0)))) else: tmp = 1.0 return tmp
function code(x, y) t_0 = Float64(x / Float64(y * 2.0)) t_1 = sin(t_0) tmp = 0.0 if (y < -1.2303690911306994e+114) tmp = 1.0; elseif (y < -9.102852406811914e-222) tmp = Float64(t_1 / Float64(t_1 * log(exp(cos(t_0))))); else tmp = 1.0; end return tmp end
function tmp_2 = code(x, y) t_0 = x / (y * 2.0); t_1 = sin(t_0); tmp = 0.0; if (y < -1.2303690911306994e+114) tmp = 1.0; elseif (y < -9.102852406811914e-222) tmp = t_1 / (t_1 * log(exp(cos(t_0)))); else tmp = 1.0; end tmp_2 = tmp; end
code[x_, y_] := Block[{t$95$0 = N[(x / N[(y * 2.0), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[Sin[t$95$0], $MachinePrecision]}, If[Less[y, -1.2303690911306994e+114], 1.0, If[Less[y, -9.102852406811914e-222], N[(t$95$1 / N[(t$95$1 * N[Log[N[Exp[N[Cos[t$95$0], $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], 1.0]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \frac{x}{y \cdot 2}\\
t_1 := \sin t\_0\\
\mathbf{if}\;y < -1.2303690911306994 \cdot 10^{+114}:\\
\;\;\;\;1\\
\mathbf{elif}\;y < -9.102852406811914 \cdot 10^{-222}:\\
\;\;\;\;\frac{t\_1}{t\_1 \cdot \log \left(e^{\cos t\_0}\right)}\\
\mathbf{else}:\\
\;\;\;\;1\\
\end{array}
\end{array}
herbie shell --seed 2024131
(FPCore (x y)
:name "Diagrams.TwoD.Layout.CirclePacking:approxRadius from diagrams-contrib-1.3.0.5"
:precision binary64
:alt
(! :herbie-platform default (if (< y -1230369091130699400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) 1 (if (< y -4551426203405957/500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) (/ (sin (/ x (* y 2))) (* (sin (/ x (* y 2))) (log (exp (cos (/ x (* y 2))))))) 1)))
(/ (tan (/ x (* y 2.0))) (sin (/ x (* y 2.0)))))