
(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (log (sqrt (+ (* x.re x.re) (* x.im x.im))))))
(*
(exp (- (* t_0 y.re) (* (atan2 x.im x.re) y.im)))
(cos (+ (* t_0 y.im) (* (atan2 x.im x.re) y.re))))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im))));
return exp(((t_0 * y_46_re) - (atan2(x_46_im, x_46_re) * y_46_im))) * cos(((t_0 * y_46_im) + (atan2(x_46_im, x_46_re) * y_46_re)));
}
real(8) function code(x_46re, x_46im, y_46re, y_46im)
real(8), intent (in) :: x_46re
real(8), intent (in) :: x_46im
real(8), intent (in) :: y_46re
real(8), intent (in) :: y_46im
real(8) :: t_0
t_0 = log(sqrt(((x_46re * x_46re) + (x_46im * x_46im))))
code = exp(((t_0 * y_46re) - (atan2(x_46im, x_46re) * y_46im))) * cos(((t_0 * y_46im) + (atan2(x_46im, x_46re) * y_46re)))
end function
public static double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = Math.log(Math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im))));
return Math.exp(((t_0 * y_46_re) - (Math.atan2(x_46_im, x_46_re) * y_46_im))) * Math.cos(((t_0 * y_46_im) + (Math.atan2(x_46_im, x_46_re) * y_46_re)));
}
def code(x_46_re, x_46_im, y_46_re, y_46_im): t_0 = math.log(math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) return math.exp(((t_0 * y_46_re) - (math.atan2(x_46_im, x_46_re) * y_46_im))) * math.cos(((t_0 * y_46_im) + (math.atan2(x_46_im, x_46_re) * y_46_re)))
function code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = log(sqrt(Float64(Float64(x_46_re * x_46_re) + Float64(x_46_im * x_46_im)))) return Float64(exp(Float64(Float64(t_0 * y_46_re) - Float64(atan(x_46_im, x_46_re) * y_46_im))) * cos(Float64(Float64(t_0 * y_46_im) + Float64(atan(x_46_im, x_46_re) * y_46_re)))) end
function tmp = code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))); tmp = exp(((t_0 * y_46_re) - (atan2(x_46_im, x_46_re) * y_46_im))) * cos(((t_0 * y_46_im) + (atan2(x_46_im, x_46_re) * y_46_re))); end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := Block[{t$95$0 = N[Log[N[Sqrt[N[(N[(x$46$re * x$46$re), $MachinePrecision] + N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]}, N[(N[Exp[N[(N[(t$95$0 * y$46$re), $MachinePrecision] - N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] * N[Cos[N[(N[(t$95$0 * y$46$im), $MachinePrecision] + N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$re), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right)\\
e^{t_0 \cdot y.re - \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im} \cdot \cos \left(t_0 \cdot y.im + \tan^{-1}_* \frac{x.im}{x.re} \cdot y.re\right)
\end{array}
\end{array}
Sampling outcomes in binary64 precision:
Herbie found 11 alternatives:
| Alternative | Accuracy | Speedup |
|---|
(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (log (sqrt (+ (* x.re x.re) (* x.im x.im))))))
(*
(exp (- (* t_0 y.re) (* (atan2 x.im x.re) y.im)))
(cos (+ (* t_0 y.im) (* (atan2 x.im x.re) y.re))))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im))));
return exp(((t_0 * y_46_re) - (atan2(x_46_im, x_46_re) * y_46_im))) * cos(((t_0 * y_46_im) + (atan2(x_46_im, x_46_re) * y_46_re)));
}
real(8) function code(x_46re, x_46im, y_46re, y_46im)
real(8), intent (in) :: x_46re
real(8), intent (in) :: x_46im
real(8), intent (in) :: y_46re
real(8), intent (in) :: y_46im
real(8) :: t_0
t_0 = log(sqrt(((x_46re * x_46re) + (x_46im * x_46im))))
code = exp(((t_0 * y_46re) - (atan2(x_46im, x_46re) * y_46im))) * cos(((t_0 * y_46im) + (atan2(x_46im, x_46re) * y_46re)))
end function
public static double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = Math.log(Math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im))));
return Math.exp(((t_0 * y_46_re) - (Math.atan2(x_46_im, x_46_re) * y_46_im))) * Math.cos(((t_0 * y_46_im) + (Math.atan2(x_46_im, x_46_re) * y_46_re)));
}
def code(x_46_re, x_46_im, y_46_re, y_46_im): t_0 = math.log(math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) return math.exp(((t_0 * y_46_re) - (math.atan2(x_46_im, x_46_re) * y_46_im))) * math.cos(((t_0 * y_46_im) + (math.atan2(x_46_im, x_46_re) * y_46_re)))
function code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = log(sqrt(Float64(Float64(x_46_re * x_46_re) + Float64(x_46_im * x_46_im)))) return Float64(exp(Float64(Float64(t_0 * y_46_re) - Float64(atan(x_46_im, x_46_re) * y_46_im))) * cos(Float64(Float64(t_0 * y_46_im) + Float64(atan(x_46_im, x_46_re) * y_46_re)))) end
function tmp = code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))); tmp = exp(((t_0 * y_46_re) - (atan2(x_46_im, x_46_re) * y_46_im))) * cos(((t_0 * y_46_im) + (atan2(x_46_im, x_46_re) * y_46_re))); end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := Block[{t$95$0 = N[Log[N[Sqrt[N[(N[(x$46$re * x$46$re), $MachinePrecision] + N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]}, N[(N[Exp[N[(N[(t$95$0 * y$46$re), $MachinePrecision] - N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] * N[Cos[N[(N[(t$95$0 * y$46$im), $MachinePrecision] + N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$re), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right)\\
e^{t_0 \cdot y.re - \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im} \cdot \cos \left(t_0 \cdot y.im + \tan^{-1}_* \frac{x.im}{x.re} \cdot y.re\right)
\end{array}
\end{array}
(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (* y.re (atan2 x.im x.re)))
(t_1 (cos (fma (log (hypot x.re x.im)) y.im t_0)))
(t_2 (pow (cbrt t_1) 3.0))
(t_3 (* (atan2 x.im x.re) y.im))
(t_4 (exp (- (* y.re (log x.re)) t_3)))
(t_5 (exp (- (* y.re (log (- x.re))) t_3)))
(t_6
(exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) t_3)))
(t_7 (cos t_0))
(t_8 (* t_7 t_4)))
(if (<= x.re -1.9e+159)
(* t_5 t_2)
(if (<= x.re -8.8e-75)
(* t_6 (cos (* y.im (log (hypot x.im x.re)))))
(if (<= x.re -2.5e-177)
(* t_7 t_5)
(if (<= x.re -1e-309)
(* t_6 t_7)
(if (<= x.re 2.02e-134)
t_8
(if (<= x.re 2.35e+42)
(* t_6 (* 2.0 (log (sqrt (exp t_1)))))
(if (<= x.re 6.2e+143) t_8 (* t_2 t_4))))))))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = y_46_re * atan2(x_46_im, x_46_re);
double t_1 = cos(fma(log(hypot(x_46_re, x_46_im)), y_46_im, t_0));
double t_2 = pow(cbrt(t_1), 3.0);
double t_3 = atan2(x_46_im, x_46_re) * y_46_im;
double t_4 = exp(((y_46_re * log(x_46_re)) - t_3));
double t_5 = exp(((y_46_re * log(-x_46_re)) - t_3));
double t_6 = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_3));
double t_7 = cos(t_0);
double t_8 = t_7 * t_4;
double tmp;
if (x_46_re <= -1.9e+159) {
tmp = t_5 * t_2;
} else if (x_46_re <= -8.8e-75) {
tmp = t_6 * cos((y_46_im * log(hypot(x_46_im, x_46_re))));
} else if (x_46_re <= -2.5e-177) {
tmp = t_7 * t_5;
} else if (x_46_re <= -1e-309) {
tmp = t_6 * t_7;
} else if (x_46_re <= 2.02e-134) {
tmp = t_8;
} else if (x_46_re <= 2.35e+42) {
tmp = t_6 * (2.0 * log(sqrt(exp(t_1))));
} else if (x_46_re <= 6.2e+143) {
tmp = t_8;
} else {
tmp = t_2 * t_4;
}
return tmp;
}
function code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = Float64(y_46_re * atan(x_46_im, x_46_re)) t_1 = cos(fma(log(hypot(x_46_re, x_46_im)), y_46_im, t_0)) t_2 = cbrt(t_1) ^ 3.0 t_3 = Float64(atan(x_46_im, x_46_re) * y_46_im) t_4 = exp(Float64(Float64(y_46_re * log(x_46_re)) - t_3)) t_5 = exp(Float64(Float64(y_46_re * log(Float64(-x_46_re))) - t_3)) t_6 = exp(Float64(Float64(log(sqrt(Float64(Float64(x_46_re * x_46_re) + Float64(x_46_im * x_46_im)))) * y_46_re) - t_3)) t_7 = cos(t_0) t_8 = Float64(t_7 * t_4) tmp = 0.0 if (x_46_re <= -1.9e+159) tmp = Float64(t_5 * t_2); elseif (x_46_re <= -8.8e-75) tmp = Float64(t_6 * cos(Float64(y_46_im * log(hypot(x_46_im, x_46_re))))); elseif (x_46_re <= -2.5e-177) tmp = Float64(t_7 * t_5); elseif (x_46_re <= -1e-309) tmp = Float64(t_6 * t_7); elseif (x_46_re <= 2.02e-134) tmp = t_8; elseif (x_46_re <= 2.35e+42) tmp = Float64(t_6 * Float64(2.0 * log(sqrt(exp(t_1))))); elseif (x_46_re <= 6.2e+143) tmp = t_8; else tmp = Float64(t_2 * t_4); end return tmp end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := Block[{t$95$0 = N[(y$46$re * N[ArcTan[x$46$im / x$46$re], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[Cos[N[(N[Log[N[Sqrt[x$46$re ^ 2 + x$46$im ^ 2], $MachinePrecision]], $MachinePrecision] * y$46$im + t$95$0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$2 = N[Power[N[Power[t$95$1, 1/3], $MachinePrecision], 3.0], $MachinePrecision]}, Block[{t$95$3 = N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]}, Block[{t$95$4 = N[Exp[N[(N[(y$46$re * N[Log[x$46$re], $MachinePrecision]), $MachinePrecision] - t$95$3), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$5 = N[Exp[N[(N[(y$46$re * N[Log[(-x$46$re)], $MachinePrecision]), $MachinePrecision] - t$95$3), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$6 = N[Exp[N[(N[(N[Log[N[Sqrt[N[(N[(x$46$re * x$46$re), $MachinePrecision] + N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] * y$46$re), $MachinePrecision] - t$95$3), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$7 = N[Cos[t$95$0], $MachinePrecision]}, Block[{t$95$8 = N[(t$95$7 * t$95$4), $MachinePrecision]}, If[LessEqual[x$46$re, -1.9e+159], N[(t$95$5 * t$95$2), $MachinePrecision], If[LessEqual[x$46$re, -8.8e-75], N[(t$95$6 * N[Cos[N[(y$46$im * N[Log[N[Sqrt[x$46$im ^ 2 + x$46$re ^ 2], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], If[LessEqual[x$46$re, -2.5e-177], N[(t$95$7 * t$95$5), $MachinePrecision], If[LessEqual[x$46$re, -1e-309], N[(t$95$6 * t$95$7), $MachinePrecision], If[LessEqual[x$46$re, 2.02e-134], t$95$8, If[LessEqual[x$46$re, 2.35e+42], N[(t$95$6 * N[(2.0 * N[Log[N[Sqrt[N[Exp[t$95$1], $MachinePrecision]], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[x$46$re, 6.2e+143], t$95$8, N[(t$95$2 * t$95$4), $MachinePrecision]]]]]]]]]]]]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\\
t_1 := \cos \left(\mathsf{fma}\left(\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), y.im, t_0\right)\right)\\
t_2 := {\left(\sqrt[3]{t_1}\right)}^{3}\\
t_3 := \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im\\
t_4 := e^{y.re \cdot \log x.re - t_3}\\
t_5 := e^{y.re \cdot \log \left(-x.re\right) - t_3}\\
t_6 := e^{\log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right) \cdot y.re - t_3}\\
t_7 := \cos t_0\\
t_8 := t_7 \cdot t_4\\
\mathbf{if}\;x.re \leq -1.9 \cdot 10^{+159}:\\
\;\;\;\;t_5 \cdot t_2\\
\mathbf{elif}\;x.re \leq -8.8 \cdot 10^{-75}:\\
\;\;\;\;t_6 \cdot \cos \left(y.im \cdot \log \left(\mathsf{hypot}\left(x.im, x.re\right)\right)\right)\\
\mathbf{elif}\;x.re \leq -2.5 \cdot 10^{-177}:\\
\;\;\;\;t_7 \cdot t_5\\
\mathbf{elif}\;x.re \leq -1 \cdot 10^{-309}:\\
\;\;\;\;t_6 \cdot t_7\\
\mathbf{elif}\;x.re \leq 2.02 \cdot 10^{-134}:\\
\;\;\;\;t_8\\
\mathbf{elif}\;x.re \leq 2.35 \cdot 10^{+42}:\\
\;\;\;\;t_6 \cdot \left(2 \cdot \log \left(\sqrt{e^{t_1}}\right)\right)\\
\mathbf{elif}\;x.re \leq 6.2 \cdot 10^{+143}:\\
\;\;\;\;t_8\\
\mathbf{else}:\\
\;\;\;\;t_2 \cdot t_4\\
\end{array}
\end{array}
if x.re < -1.89999999999999983e159Initial program 0.0%
add-cube-cbrt0.0%
pow30.0%
fma-def0.0%
hypot-def40.1%
Applied egg-rr40.1%
Taylor expanded in x.re around -inf 90.3%
mul-1-neg90.3%
Simplified90.3%
if -1.89999999999999983e159 < x.re < -8.80000000000000022e-75Initial program 48.8%
Taylor expanded in y.re around 0 60.8%
unpow260.8%
unpow260.8%
hypot-def75.7%
Simplified75.7%
if -8.80000000000000022e-75 < x.re < -2.5e-177Initial program 57.1%
Taylor expanded in y.im around 0 67.1%
Taylor expanded in x.re around -inf 81.1%
mul-1-neg71.6%
Simplified81.1%
if -2.5e-177 < x.re < -1.000000000000002e-309Initial program 52.8%
Taylor expanded in y.im around 0 78.0%
if -1.000000000000002e-309 < x.re < 2.0199999999999999e-134 or 2.34999999999999993e42 < x.re < 6.1999999999999998e143Initial program 60.1%
Taylor expanded in y.im around 0 66.0%
Taylor expanded in x.re around inf 77.4%
if 2.0199999999999999e-134 < x.re < 2.34999999999999993e42Initial program 60.1%
add-log-exp60.1%
add-sqr-sqrt60.1%
log-prod60.1%
Applied egg-rr84.5%
count-284.5%
*-commutative84.5%
Simplified84.5%
if 6.1999999999999998e143 < x.re Initial program 0.0%
add-cube-cbrt0.0%
pow30.0%
fma-def0.0%
hypot-def48.5%
Applied egg-rr48.5%
Taylor expanded in x.re around inf 79.5%
Final simplification80.3%
(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (sqrt (log (hypot x.re x.im))))
(t_1 (* y.re (atan2 x.im x.re)))
(t_2 (* (atan2 x.im x.re) y.im))
(t_3 (log (sqrt (+ (* x.re x.re) (* x.im x.im)))))
(t_4 (exp (- (* t_3 y.re) t_2))))
(if (<= (* (cos (+ (* t_3 y.im) t_1)) t_4) INFINITY)
t_4
(* (exp (- (* y.re (log (pow (exp t_0) t_0))) t_2)) (cos t_1)))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = sqrt(log(hypot(x_46_re, x_46_im)));
double t_1 = y_46_re * atan2(x_46_im, x_46_re);
double t_2 = atan2(x_46_im, x_46_re) * y_46_im;
double t_3 = log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im))));
double t_4 = exp(((t_3 * y_46_re) - t_2));
double tmp;
if ((cos(((t_3 * y_46_im) + t_1)) * t_4) <= ((double) INFINITY)) {
tmp = t_4;
} else {
tmp = exp(((y_46_re * log(pow(exp(t_0), t_0))) - t_2)) * cos(t_1);
}
return tmp;
}
public static double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = Math.sqrt(Math.log(Math.hypot(x_46_re, x_46_im)));
double t_1 = y_46_re * Math.atan2(x_46_im, x_46_re);
double t_2 = Math.atan2(x_46_im, x_46_re) * y_46_im;
double t_3 = Math.log(Math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im))));
double t_4 = Math.exp(((t_3 * y_46_re) - t_2));
double tmp;
if ((Math.cos(((t_3 * y_46_im) + t_1)) * t_4) <= Double.POSITIVE_INFINITY) {
tmp = t_4;
} else {
tmp = Math.exp(((y_46_re * Math.log(Math.pow(Math.exp(t_0), t_0))) - t_2)) * Math.cos(t_1);
}
return tmp;
}
def code(x_46_re, x_46_im, y_46_re, y_46_im): t_0 = math.sqrt(math.log(math.hypot(x_46_re, x_46_im))) t_1 = y_46_re * math.atan2(x_46_im, x_46_re) t_2 = math.atan2(x_46_im, x_46_re) * y_46_im t_3 = math.log(math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) t_4 = math.exp(((t_3 * y_46_re) - t_2)) tmp = 0 if (math.cos(((t_3 * y_46_im) + t_1)) * t_4) <= math.inf: tmp = t_4 else: tmp = math.exp(((y_46_re * math.log(math.pow(math.exp(t_0), t_0))) - t_2)) * math.cos(t_1) return tmp
function code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = sqrt(log(hypot(x_46_re, x_46_im))) t_1 = Float64(y_46_re * atan(x_46_im, x_46_re)) t_2 = Float64(atan(x_46_im, x_46_re) * y_46_im) t_3 = log(sqrt(Float64(Float64(x_46_re * x_46_re) + Float64(x_46_im * x_46_im)))) t_4 = exp(Float64(Float64(t_3 * y_46_re) - t_2)) tmp = 0.0 if (Float64(cos(Float64(Float64(t_3 * y_46_im) + t_1)) * t_4) <= Inf) tmp = t_4; else tmp = Float64(exp(Float64(Float64(y_46_re * log((exp(t_0) ^ t_0))) - t_2)) * cos(t_1)); end return tmp end
function tmp_2 = code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = sqrt(log(hypot(x_46_re, x_46_im))); t_1 = y_46_re * atan2(x_46_im, x_46_re); t_2 = atan2(x_46_im, x_46_re) * y_46_im; t_3 = log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))); t_4 = exp(((t_3 * y_46_re) - t_2)); tmp = 0.0; if ((cos(((t_3 * y_46_im) + t_1)) * t_4) <= Inf) tmp = t_4; else tmp = exp(((y_46_re * log((exp(t_0) ^ t_0))) - t_2)) * cos(t_1); end tmp_2 = tmp; end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := Block[{t$95$0 = N[Sqrt[N[Log[N[Sqrt[x$46$re ^ 2 + x$46$im ^ 2], $MachinePrecision]], $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(y$46$re * N[ArcTan[x$46$im / x$46$re], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]}, Block[{t$95$3 = N[Log[N[Sqrt[N[(N[(x$46$re * x$46$re), $MachinePrecision] + N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision]}, Block[{t$95$4 = N[Exp[N[(N[(t$95$3 * y$46$re), $MachinePrecision] - t$95$2), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[N[(N[Cos[N[(N[(t$95$3 * y$46$im), $MachinePrecision] + t$95$1), $MachinePrecision]], $MachinePrecision] * t$95$4), $MachinePrecision], Infinity], t$95$4, N[(N[Exp[N[(N[(y$46$re * N[Log[N[Power[N[Exp[t$95$0], $MachinePrecision], t$95$0], $MachinePrecision]], $MachinePrecision]), $MachinePrecision] - t$95$2), $MachinePrecision]], $MachinePrecision] * N[Cos[t$95$1], $MachinePrecision]), $MachinePrecision]]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \sqrt{\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right)}\\
t_1 := y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\\
t_2 := \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im\\
t_3 := \log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right)\\
t_4 := e^{t_3 \cdot y.re - t_2}\\
\mathbf{if}\;\cos \left(t_3 \cdot y.im + t_1\right) \cdot t_4 \leq \infty:\\
\;\;\;\;t_4\\
\mathbf{else}:\\
\;\;\;\;e^{y.re \cdot \log \left({\left(e^{t_0}\right)}^{t_0}\right) - t_2} \cdot \cos t_1\\
\end{array}
\end{array}
if (*.f64 (exp.f64 (-.f64 (*.f64 (log.f64 (sqrt.f64 (+.f64 (*.f64 x.re x.re) (*.f64 x.im x.im)))) y.re) (*.f64 (atan2.f64 x.im x.re) y.im))) (cos.f64 (+.f64 (*.f64 (log.f64 (sqrt.f64 (+.f64 (*.f64 x.re x.re) (*.f64 x.im x.im)))) y.im) (*.f64 (atan2.f64 x.im x.re) y.re)))) < +inf.0Initial program 80.4%
Taylor expanded in y.im around 0 79.5%
Taylor expanded in y.re around 0 83.2%
if +inf.0 < (*.f64 (exp.f64 (-.f64 (*.f64 (log.f64 (sqrt.f64 (+.f64 (*.f64 x.re x.re) (*.f64 x.im x.im)))) y.re) (*.f64 (atan2.f64 x.im x.re) y.im))) (cos.f64 (+.f64 (*.f64 (log.f64 (sqrt.f64 (+.f64 (*.f64 x.re x.re) (*.f64 x.im x.im)))) y.im) (*.f64 (atan2.f64 x.im x.re) y.re)))) Initial program 0.0%
Taylor expanded in y.im around 0 43.5%
add-exp-log43.5%
add-sqr-sqrt37.7%
exp-prod37.7%
hypot-def37.7%
hypot-def71.4%
Applied egg-rr71.4%
Final simplification77.5%
(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (* y.re (atan2 x.im x.re)))
(t_1 (cos (fma (log (hypot x.re x.im)) y.im t_0)))
(t_2 (pow (cbrt t_1) 3.0))
(t_3 (* (atan2 x.im x.re) y.im))
(t_4 (exp (- (* y.re (log x.re)) t_3)))
(t_5 (exp (- (* y.re (log (- x.re))) t_3)))
(t_6
(exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) t_3)))
(t_7 (cos t_0))
(t_8 (* t_7 t_4)))
(if (<= x.re -1.6e+159)
(* t_5 t_2)
(if (<= x.re -2.25e-77)
(* t_6 (cos (* y.im (log (hypot x.im x.re)))))
(if (<= x.re -1e-177)
(* t_7 t_5)
(if (<= x.re -1e-309)
(* t_6 t_7)
(if (<= x.re 1.1e-133)
t_8
(if (<= x.re 2.35e+42)
(* t_6 (log (exp t_1)))
(if (<= x.re 1.25e+143) t_8 (* t_2 t_4))))))))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = y_46_re * atan2(x_46_im, x_46_re);
double t_1 = cos(fma(log(hypot(x_46_re, x_46_im)), y_46_im, t_0));
double t_2 = pow(cbrt(t_1), 3.0);
double t_3 = atan2(x_46_im, x_46_re) * y_46_im;
double t_4 = exp(((y_46_re * log(x_46_re)) - t_3));
double t_5 = exp(((y_46_re * log(-x_46_re)) - t_3));
double t_6 = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_3));
double t_7 = cos(t_0);
double t_8 = t_7 * t_4;
double tmp;
if (x_46_re <= -1.6e+159) {
tmp = t_5 * t_2;
} else if (x_46_re <= -2.25e-77) {
tmp = t_6 * cos((y_46_im * log(hypot(x_46_im, x_46_re))));
} else if (x_46_re <= -1e-177) {
tmp = t_7 * t_5;
} else if (x_46_re <= -1e-309) {
tmp = t_6 * t_7;
} else if (x_46_re <= 1.1e-133) {
tmp = t_8;
} else if (x_46_re <= 2.35e+42) {
tmp = t_6 * log(exp(t_1));
} else if (x_46_re <= 1.25e+143) {
tmp = t_8;
} else {
tmp = t_2 * t_4;
}
return tmp;
}
function code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = Float64(y_46_re * atan(x_46_im, x_46_re)) t_1 = cos(fma(log(hypot(x_46_re, x_46_im)), y_46_im, t_0)) t_2 = cbrt(t_1) ^ 3.0 t_3 = Float64(atan(x_46_im, x_46_re) * y_46_im) t_4 = exp(Float64(Float64(y_46_re * log(x_46_re)) - t_3)) t_5 = exp(Float64(Float64(y_46_re * log(Float64(-x_46_re))) - t_3)) t_6 = exp(Float64(Float64(log(sqrt(Float64(Float64(x_46_re * x_46_re) + Float64(x_46_im * x_46_im)))) * y_46_re) - t_3)) t_7 = cos(t_0) t_8 = Float64(t_7 * t_4) tmp = 0.0 if (x_46_re <= -1.6e+159) tmp = Float64(t_5 * t_2); elseif (x_46_re <= -2.25e-77) tmp = Float64(t_6 * cos(Float64(y_46_im * log(hypot(x_46_im, x_46_re))))); elseif (x_46_re <= -1e-177) tmp = Float64(t_7 * t_5); elseif (x_46_re <= -1e-309) tmp = Float64(t_6 * t_7); elseif (x_46_re <= 1.1e-133) tmp = t_8; elseif (x_46_re <= 2.35e+42) tmp = Float64(t_6 * log(exp(t_1))); elseif (x_46_re <= 1.25e+143) tmp = t_8; else tmp = Float64(t_2 * t_4); end return tmp end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := Block[{t$95$0 = N[(y$46$re * N[ArcTan[x$46$im / x$46$re], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[Cos[N[(N[Log[N[Sqrt[x$46$re ^ 2 + x$46$im ^ 2], $MachinePrecision]], $MachinePrecision] * y$46$im + t$95$0), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$2 = N[Power[N[Power[t$95$1, 1/3], $MachinePrecision], 3.0], $MachinePrecision]}, Block[{t$95$3 = N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]}, Block[{t$95$4 = N[Exp[N[(N[(y$46$re * N[Log[x$46$re], $MachinePrecision]), $MachinePrecision] - t$95$3), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$5 = N[Exp[N[(N[(y$46$re * N[Log[(-x$46$re)], $MachinePrecision]), $MachinePrecision] - t$95$3), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$6 = N[Exp[N[(N[(N[Log[N[Sqrt[N[(N[(x$46$re * x$46$re), $MachinePrecision] + N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] * y$46$re), $MachinePrecision] - t$95$3), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$7 = N[Cos[t$95$0], $MachinePrecision]}, Block[{t$95$8 = N[(t$95$7 * t$95$4), $MachinePrecision]}, If[LessEqual[x$46$re, -1.6e+159], N[(t$95$5 * t$95$2), $MachinePrecision], If[LessEqual[x$46$re, -2.25e-77], N[(t$95$6 * N[Cos[N[(y$46$im * N[Log[N[Sqrt[x$46$im ^ 2 + x$46$re ^ 2], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], If[LessEqual[x$46$re, -1e-177], N[(t$95$7 * t$95$5), $MachinePrecision], If[LessEqual[x$46$re, -1e-309], N[(t$95$6 * t$95$7), $MachinePrecision], If[LessEqual[x$46$re, 1.1e-133], t$95$8, If[LessEqual[x$46$re, 2.35e+42], N[(t$95$6 * N[Log[N[Exp[t$95$1], $MachinePrecision]], $MachinePrecision]), $MachinePrecision], If[LessEqual[x$46$re, 1.25e+143], t$95$8, N[(t$95$2 * t$95$4), $MachinePrecision]]]]]]]]]]]]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\\
t_1 := \cos \left(\mathsf{fma}\left(\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), y.im, t_0\right)\right)\\
t_2 := {\left(\sqrt[3]{t_1}\right)}^{3}\\
t_3 := \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im\\
t_4 := e^{y.re \cdot \log x.re - t_3}\\
t_5 := e^{y.re \cdot \log \left(-x.re\right) - t_3}\\
t_6 := e^{\log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right) \cdot y.re - t_3}\\
t_7 := \cos t_0\\
t_8 := t_7 \cdot t_4\\
\mathbf{if}\;x.re \leq -1.6 \cdot 10^{+159}:\\
\;\;\;\;t_5 \cdot t_2\\
\mathbf{elif}\;x.re \leq -2.25 \cdot 10^{-77}:\\
\;\;\;\;t_6 \cdot \cos \left(y.im \cdot \log \left(\mathsf{hypot}\left(x.im, x.re\right)\right)\right)\\
\mathbf{elif}\;x.re \leq -1 \cdot 10^{-177}:\\
\;\;\;\;t_7 \cdot t_5\\
\mathbf{elif}\;x.re \leq -1 \cdot 10^{-309}:\\
\;\;\;\;t_6 \cdot t_7\\
\mathbf{elif}\;x.re \leq 1.1 \cdot 10^{-133}:\\
\;\;\;\;t_8\\
\mathbf{elif}\;x.re \leq 2.35 \cdot 10^{+42}:\\
\;\;\;\;t_6 \cdot \log \left(e^{t_1}\right)\\
\mathbf{elif}\;x.re \leq 1.25 \cdot 10^{+143}:\\
\;\;\;\;t_8\\
\mathbf{else}:\\
\;\;\;\;t_2 \cdot t_4\\
\end{array}
\end{array}
if x.re < -1.59999999999999992e159Initial program 0.0%
add-cube-cbrt0.0%
pow30.0%
fma-def0.0%
hypot-def40.1%
Applied egg-rr40.1%
Taylor expanded in x.re around -inf 90.3%
mul-1-neg90.3%
Simplified90.3%
if -1.59999999999999992e159 < x.re < -2.25e-77Initial program 48.8%
Taylor expanded in y.re around 0 60.8%
unpow260.8%
unpow260.8%
hypot-def75.7%
Simplified75.7%
if -2.25e-77 < x.re < -9.99999999999999952e-178Initial program 57.1%
Taylor expanded in y.im around 0 67.1%
Taylor expanded in x.re around -inf 81.1%
mul-1-neg71.6%
Simplified81.1%
if -9.99999999999999952e-178 < x.re < -1.000000000000002e-309Initial program 52.8%
Taylor expanded in y.im around 0 78.0%
if -1.000000000000002e-309 < x.re < 1.1e-133 or 2.34999999999999993e42 < x.re < 1.25000000000000003e143Initial program 60.1%
Taylor expanded in y.im around 0 66.0%
Taylor expanded in x.re around inf 77.4%
if 1.1e-133 < x.re < 2.34999999999999993e42Initial program 60.1%
add-log-exp60.1%
fma-def60.1%
hypot-def84.5%
Applied egg-rr84.5%
if 1.25000000000000003e143 < x.re Initial program 0.0%
add-cube-cbrt0.0%
pow30.0%
fma-def0.0%
hypot-def48.5%
Applied egg-rr48.5%
Taylor expanded in x.re around inf 79.5%
Final simplification80.3%
(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (* y.re (atan2 x.im x.re)))
(t_1 (pow (cbrt (cos (fma (log (hypot x.re x.im)) y.im t_0))) 3.0))
(t_2 (* (atan2 x.im x.re) y.im))
(t_3 (exp (- (* y.re (log (- x.re))) t_2)))
(t_4
(exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) t_2)))
(t_5 (cos t_0)))
(if (<= x.re -1.6e+159)
(* t_3 t_1)
(if (<= x.re -4.6e-82)
(* t_4 (cos (* y.im (log (hypot x.im x.re)))))
(if (<= x.re -3.7e-177)
(* t_5 t_3)
(if (<= x.re 2e-309)
(* t_4 t_5)
(* t_1 (exp (- (* y.re (log x.re)) t_2)))))))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = y_46_re * atan2(x_46_im, x_46_re);
double t_1 = pow(cbrt(cos(fma(log(hypot(x_46_re, x_46_im)), y_46_im, t_0))), 3.0);
double t_2 = atan2(x_46_im, x_46_re) * y_46_im;
double t_3 = exp(((y_46_re * log(-x_46_re)) - t_2));
double t_4 = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_2));
double t_5 = cos(t_0);
double tmp;
if (x_46_re <= -1.6e+159) {
tmp = t_3 * t_1;
} else if (x_46_re <= -4.6e-82) {
tmp = t_4 * cos((y_46_im * log(hypot(x_46_im, x_46_re))));
} else if (x_46_re <= -3.7e-177) {
tmp = t_5 * t_3;
} else if (x_46_re <= 2e-309) {
tmp = t_4 * t_5;
} else {
tmp = t_1 * exp(((y_46_re * log(x_46_re)) - t_2));
}
return tmp;
}
function code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = Float64(y_46_re * atan(x_46_im, x_46_re)) t_1 = cbrt(cos(fma(log(hypot(x_46_re, x_46_im)), y_46_im, t_0))) ^ 3.0 t_2 = Float64(atan(x_46_im, x_46_re) * y_46_im) t_3 = exp(Float64(Float64(y_46_re * log(Float64(-x_46_re))) - t_2)) t_4 = exp(Float64(Float64(log(sqrt(Float64(Float64(x_46_re * x_46_re) + Float64(x_46_im * x_46_im)))) * y_46_re) - t_2)) t_5 = cos(t_0) tmp = 0.0 if (x_46_re <= -1.6e+159) tmp = Float64(t_3 * t_1); elseif (x_46_re <= -4.6e-82) tmp = Float64(t_4 * cos(Float64(y_46_im * log(hypot(x_46_im, x_46_re))))); elseif (x_46_re <= -3.7e-177) tmp = Float64(t_5 * t_3); elseif (x_46_re <= 2e-309) tmp = Float64(t_4 * t_5); else tmp = Float64(t_1 * exp(Float64(Float64(y_46_re * log(x_46_re)) - t_2))); end return tmp end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := Block[{t$95$0 = N[(y$46$re * N[ArcTan[x$46$im / x$46$re], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[Power[N[Power[N[Cos[N[(N[Log[N[Sqrt[x$46$re ^ 2 + x$46$im ^ 2], $MachinePrecision]], $MachinePrecision] * y$46$im + t$95$0), $MachinePrecision]], $MachinePrecision], 1/3], $MachinePrecision], 3.0], $MachinePrecision]}, Block[{t$95$2 = N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]}, Block[{t$95$3 = N[Exp[N[(N[(y$46$re * N[Log[(-x$46$re)], $MachinePrecision]), $MachinePrecision] - t$95$2), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$4 = N[Exp[N[(N[(N[Log[N[Sqrt[N[(N[(x$46$re * x$46$re), $MachinePrecision] + N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] * y$46$re), $MachinePrecision] - t$95$2), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$5 = N[Cos[t$95$0], $MachinePrecision]}, If[LessEqual[x$46$re, -1.6e+159], N[(t$95$3 * t$95$1), $MachinePrecision], If[LessEqual[x$46$re, -4.6e-82], N[(t$95$4 * N[Cos[N[(y$46$im * N[Log[N[Sqrt[x$46$im ^ 2 + x$46$re ^ 2], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], If[LessEqual[x$46$re, -3.7e-177], N[(t$95$5 * t$95$3), $MachinePrecision], If[LessEqual[x$46$re, 2e-309], N[(t$95$4 * t$95$5), $MachinePrecision], N[(t$95$1 * N[Exp[N[(N[(y$46$re * N[Log[x$46$re], $MachinePrecision]), $MachinePrecision] - t$95$2), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]]]]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\\
t_1 := {\left(\sqrt[3]{\cos \left(\mathsf{fma}\left(\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), y.im, t_0\right)\right)}\right)}^{3}\\
t_2 := \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im\\
t_3 := e^{y.re \cdot \log \left(-x.re\right) - t_2}\\
t_4 := e^{\log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right) \cdot y.re - t_2}\\
t_5 := \cos t_0\\
\mathbf{if}\;x.re \leq -1.6 \cdot 10^{+159}:\\
\;\;\;\;t_3 \cdot t_1\\
\mathbf{elif}\;x.re \leq -4.6 \cdot 10^{-82}:\\
\;\;\;\;t_4 \cdot \cos \left(y.im \cdot \log \left(\mathsf{hypot}\left(x.im, x.re\right)\right)\right)\\
\mathbf{elif}\;x.re \leq -3.7 \cdot 10^{-177}:\\
\;\;\;\;t_5 \cdot t_3\\
\mathbf{elif}\;x.re \leq 2 \cdot 10^{-309}:\\
\;\;\;\;t_4 \cdot t_5\\
\mathbf{else}:\\
\;\;\;\;t_1 \cdot e^{y.re \cdot \log x.re - t_2}\\
\end{array}
\end{array}
if x.re < -1.59999999999999992e159Initial program 0.0%
add-cube-cbrt0.0%
pow30.0%
fma-def0.0%
hypot-def40.1%
Applied egg-rr40.1%
Taylor expanded in x.re around -inf 90.3%
mul-1-neg90.3%
Simplified90.3%
if -1.59999999999999992e159 < x.re < -4.59999999999999994e-82Initial program 48.8%
Taylor expanded in y.re around 0 60.8%
unpow260.8%
unpow260.8%
hypot-def75.7%
Simplified75.7%
if -4.59999999999999994e-82 < x.re < -3.69999999999999993e-177Initial program 57.1%
Taylor expanded in y.im around 0 67.1%
Taylor expanded in x.re around -inf 81.1%
mul-1-neg71.6%
Simplified81.1%
if -3.69999999999999993e-177 < x.re < 1.9999999999999988e-309Initial program 52.8%
Taylor expanded in y.im around 0 78.0%
if 1.9999999999999988e-309 < x.re Initial program 44.0%
add-cube-cbrt44.0%
pow344.0%
fma-def44.0%
hypot-def65.9%
Applied egg-rr65.9%
Taylor expanded in x.re around inf 76.5%
Final simplification78.6%
(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (* (atan2 x.im x.re) y.im))
(t_1 (* y.re (atan2 x.im x.re)))
(t_2 (cos t_1))
(t_3 (* t_2 (exp (- (* y.re (log (- x.re))) t_0)))))
(if (<= x.re -2e-177)
t_3
(if (<= x.re -2.7e-292)
(*
(exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) t_0))
t_2)
(if (<= x.re -1e-309)
t_3
(*
(pow (cbrt (cos (fma (log (hypot x.re x.im)) y.im t_1))) 3.0)
(exp (- (* y.re (log x.re)) t_0))))))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = atan2(x_46_im, x_46_re) * y_46_im;
double t_1 = y_46_re * atan2(x_46_im, x_46_re);
double t_2 = cos(t_1);
double t_3 = t_2 * exp(((y_46_re * log(-x_46_re)) - t_0));
double tmp;
if (x_46_re <= -2e-177) {
tmp = t_3;
} else if (x_46_re <= -2.7e-292) {
tmp = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0)) * t_2;
} else if (x_46_re <= -1e-309) {
tmp = t_3;
} else {
tmp = pow(cbrt(cos(fma(log(hypot(x_46_re, x_46_im)), y_46_im, t_1))), 3.0) * exp(((y_46_re * log(x_46_re)) - t_0));
}
return tmp;
}
function code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = Float64(atan(x_46_im, x_46_re) * y_46_im) t_1 = Float64(y_46_re * atan(x_46_im, x_46_re)) t_2 = cos(t_1) t_3 = Float64(t_2 * exp(Float64(Float64(y_46_re * log(Float64(-x_46_re))) - t_0))) tmp = 0.0 if (x_46_re <= -2e-177) tmp = t_3; elseif (x_46_re <= -2.7e-292) tmp = Float64(exp(Float64(Float64(log(sqrt(Float64(Float64(x_46_re * x_46_re) + Float64(x_46_im * x_46_im)))) * y_46_re) - t_0)) * t_2); elseif (x_46_re <= -1e-309) tmp = t_3; else tmp = Float64((cbrt(cos(fma(log(hypot(x_46_re, x_46_im)), y_46_im, t_1))) ^ 3.0) * exp(Float64(Float64(y_46_re * log(x_46_re)) - t_0))); end return tmp end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := Block[{t$95$0 = N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]}, Block[{t$95$1 = N[(y$46$re * N[ArcTan[x$46$im / x$46$re], $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[Cos[t$95$1], $MachinePrecision]}, Block[{t$95$3 = N[(t$95$2 * N[Exp[N[(N[(y$46$re * N[Log[(-x$46$re)], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x$46$re, -2e-177], t$95$3, If[LessEqual[x$46$re, -2.7e-292], N[(N[Exp[N[(N[(N[Log[N[Sqrt[N[(N[(x$46$re * x$46$re), $MachinePrecision] + N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] * y$46$re), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision] * t$95$2), $MachinePrecision], If[LessEqual[x$46$re, -1e-309], t$95$3, N[(N[Power[N[Power[N[Cos[N[(N[Log[N[Sqrt[x$46$re ^ 2 + x$46$im ^ 2], $MachinePrecision]], $MachinePrecision] * y$46$im + t$95$1), $MachinePrecision]], $MachinePrecision], 1/3], $MachinePrecision], 3.0], $MachinePrecision] * N[Exp[N[(N[(y$46$re * N[Log[x$46$re], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im\\
t_1 := y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\\
t_2 := \cos t_1\\
t_3 := t_2 \cdot e^{y.re \cdot \log \left(-x.re\right) - t_0}\\
\mathbf{if}\;x.re \leq -2 \cdot 10^{-177}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;x.re \leq -2.7 \cdot 10^{-292}:\\
\;\;\;\;e^{\log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right) \cdot y.re - t_0} \cdot t_2\\
\mathbf{elif}\;x.re \leq -1 \cdot 10^{-309}:\\
\;\;\;\;t_3\\
\mathbf{else}:\\
\;\;\;\;{\left(\sqrt[3]{\cos \left(\mathsf{fma}\left(\log \left(\mathsf{hypot}\left(x.re, x.im\right)\right), y.im, t_1\right)\right)}\right)}^{3} \cdot e^{y.re \cdot \log x.re - t_0}\\
\end{array}
\end{array}
if x.re < -1.9999999999999999e-177 or -2.6999999999999999e-292 < x.re < -1.000000000000002e-309Initial program 34.7%
Taylor expanded in y.im around 0 56.8%
Taylor expanded in x.re around -inf 76.6%
mul-1-neg74.6%
Simplified76.6%
if -1.9999999999999999e-177 < x.re < -2.6999999999999999e-292Initial program 54.8%
Taylor expanded in y.im around 0 80.8%
if -1.000000000000002e-309 < x.re Initial program 44.0%
add-cube-cbrt44.0%
pow344.0%
fma-def44.0%
hypot-def65.9%
Applied egg-rr65.9%
Taylor expanded in x.re around inf 76.5%
Final simplification77.1%
(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (* (atan2 x.im x.re) y.im))
(t_1 (cos (* y.re (atan2 x.im x.re))))
(t_2 (* t_1 (exp (- (* y.re (log (- x.re))) t_0)))))
(if (<= x.re -1.9e-177)
t_2
(if (<= x.re -3.5e-292)
(*
(exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) t_0))
t_1)
(if (<= x.re -1e-309) t_2 (* t_1 (exp (- (* y.re (log x.re)) t_0))))))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = atan2(x_46_im, x_46_re) * y_46_im;
double t_1 = cos((y_46_re * atan2(x_46_im, x_46_re)));
double t_2 = t_1 * exp(((y_46_re * log(-x_46_re)) - t_0));
double tmp;
if (x_46_re <= -1.9e-177) {
tmp = t_2;
} else if (x_46_re <= -3.5e-292) {
tmp = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0)) * t_1;
} else if (x_46_re <= -1e-309) {
tmp = t_2;
} else {
tmp = t_1 * exp(((y_46_re * log(x_46_re)) - t_0));
}
return tmp;
}
real(8) function code(x_46re, x_46im, y_46re, y_46im)
real(8), intent (in) :: x_46re
real(8), intent (in) :: x_46im
real(8), intent (in) :: y_46re
real(8), intent (in) :: y_46im
real(8) :: t_0
real(8) :: t_1
real(8) :: t_2
real(8) :: tmp
t_0 = atan2(x_46im, x_46re) * y_46im
t_1 = cos((y_46re * atan2(x_46im, x_46re)))
t_2 = t_1 * exp(((y_46re * log(-x_46re)) - t_0))
if (x_46re <= (-1.9d-177)) then
tmp = t_2
else if (x_46re <= (-3.5d-292)) then
tmp = exp(((log(sqrt(((x_46re * x_46re) + (x_46im * x_46im)))) * y_46re) - t_0)) * t_1
else if (x_46re <= (-1d-309)) then
tmp = t_2
else
tmp = t_1 * exp(((y_46re * log(x_46re)) - t_0))
end if
code = tmp
end function
public static double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = Math.atan2(x_46_im, x_46_re) * y_46_im;
double t_1 = Math.cos((y_46_re * Math.atan2(x_46_im, x_46_re)));
double t_2 = t_1 * Math.exp(((y_46_re * Math.log(-x_46_re)) - t_0));
double tmp;
if (x_46_re <= -1.9e-177) {
tmp = t_2;
} else if (x_46_re <= -3.5e-292) {
tmp = Math.exp(((Math.log(Math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0)) * t_1;
} else if (x_46_re <= -1e-309) {
tmp = t_2;
} else {
tmp = t_1 * Math.exp(((y_46_re * Math.log(x_46_re)) - t_0));
}
return tmp;
}
def code(x_46_re, x_46_im, y_46_re, y_46_im): t_0 = math.atan2(x_46_im, x_46_re) * y_46_im t_1 = math.cos((y_46_re * math.atan2(x_46_im, x_46_re))) t_2 = t_1 * math.exp(((y_46_re * math.log(-x_46_re)) - t_0)) tmp = 0 if x_46_re <= -1.9e-177: tmp = t_2 elif x_46_re <= -3.5e-292: tmp = math.exp(((math.log(math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0)) * t_1 elif x_46_re <= -1e-309: tmp = t_2 else: tmp = t_1 * math.exp(((y_46_re * math.log(x_46_re)) - t_0)) return tmp
function code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = Float64(atan(x_46_im, x_46_re) * y_46_im) t_1 = cos(Float64(y_46_re * atan(x_46_im, x_46_re))) t_2 = Float64(t_1 * exp(Float64(Float64(y_46_re * log(Float64(-x_46_re))) - t_0))) tmp = 0.0 if (x_46_re <= -1.9e-177) tmp = t_2; elseif (x_46_re <= -3.5e-292) tmp = Float64(exp(Float64(Float64(log(sqrt(Float64(Float64(x_46_re * x_46_re) + Float64(x_46_im * x_46_im)))) * y_46_re) - t_0)) * t_1); elseif (x_46_re <= -1e-309) tmp = t_2; else tmp = Float64(t_1 * exp(Float64(Float64(y_46_re * log(x_46_re)) - t_0))); end return tmp end
function tmp_2 = code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = atan2(x_46_im, x_46_re) * y_46_im; t_1 = cos((y_46_re * atan2(x_46_im, x_46_re))); t_2 = t_1 * exp(((y_46_re * log(-x_46_re)) - t_0)); tmp = 0.0; if (x_46_re <= -1.9e-177) tmp = t_2; elseif (x_46_re <= -3.5e-292) tmp = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0)) * t_1; elseif (x_46_re <= -1e-309) tmp = t_2; else tmp = t_1 * exp(((y_46_re * log(x_46_re)) - t_0)); end tmp_2 = tmp; end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := Block[{t$95$0 = N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]}, Block[{t$95$1 = N[Cos[N[(y$46$re * N[ArcTan[x$46$im / x$46$re], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, Block[{t$95$2 = N[(t$95$1 * N[Exp[N[(N[(y$46$re * N[Log[(-x$46$re)], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[x$46$re, -1.9e-177], t$95$2, If[LessEqual[x$46$re, -3.5e-292], N[(N[Exp[N[(N[(N[Log[N[Sqrt[N[(N[(x$46$re * x$46$re), $MachinePrecision] + N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] * y$46$re), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision] * t$95$1), $MachinePrecision], If[LessEqual[x$46$re, -1e-309], t$95$2, N[(t$95$1 * N[Exp[N[(N[(y$46$re * N[Log[x$46$re], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im\\
t_1 := \cos \left(y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\right)\\
t_2 := t_1 \cdot e^{y.re \cdot \log \left(-x.re\right) - t_0}\\
\mathbf{if}\;x.re \leq -1.9 \cdot 10^{-177}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;x.re \leq -3.5 \cdot 10^{-292}:\\
\;\;\;\;e^{\log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right) \cdot y.re - t_0} \cdot t_1\\
\mathbf{elif}\;x.re \leq -1 \cdot 10^{-309}:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;t_1 \cdot e^{y.re \cdot \log x.re - t_0}\\
\end{array}
\end{array}
if x.re < -1.90000000000000002e-177 or -3.5e-292 < x.re < -1.000000000000002e-309Initial program 34.7%
Taylor expanded in y.im around 0 56.8%
Taylor expanded in x.re around -inf 76.6%
mul-1-neg74.6%
Simplified76.6%
if -1.90000000000000002e-177 < x.re < -3.5e-292Initial program 54.8%
Taylor expanded in y.im around 0 80.8%
if -1.000000000000002e-309 < x.re Initial program 44.0%
Taylor expanded in y.im around 0 61.8%
Taylor expanded in x.re around inf 73.7%
Final simplification75.7%
(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (* (atan2 x.im x.re) y.im))
(t_1 (cos (* y.re (atan2 x.im x.re)))))
(if (<= x.im -1.02e+123)
(* t_1 (exp (- (* y.re (log (- x.im))) t_0)))
(if (or (<= x.im 1.02e-109)
(and (not (<= x.im 8.8e-36)) (<= x.im 6.8e-15)))
(exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) t_0))
(* t_1 (exp (- (* y.re (log x.im)) t_0)))))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = atan2(x_46_im, x_46_re) * y_46_im;
double t_1 = cos((y_46_re * atan2(x_46_im, x_46_re)));
double tmp;
if (x_46_im <= -1.02e+123) {
tmp = t_1 * exp(((y_46_re * log(-x_46_im)) - t_0));
} else if ((x_46_im <= 1.02e-109) || (!(x_46_im <= 8.8e-36) && (x_46_im <= 6.8e-15))) {
tmp = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0));
} else {
tmp = t_1 * exp(((y_46_re * log(x_46_im)) - t_0));
}
return tmp;
}
real(8) function code(x_46re, x_46im, y_46re, y_46im)
real(8), intent (in) :: x_46re
real(8), intent (in) :: x_46im
real(8), intent (in) :: y_46re
real(8), intent (in) :: y_46im
real(8) :: t_0
real(8) :: t_1
real(8) :: tmp
t_0 = atan2(x_46im, x_46re) * y_46im
t_1 = cos((y_46re * atan2(x_46im, x_46re)))
if (x_46im <= (-1.02d+123)) then
tmp = t_1 * exp(((y_46re * log(-x_46im)) - t_0))
else if ((x_46im <= 1.02d-109) .or. (.not. (x_46im <= 8.8d-36)) .and. (x_46im <= 6.8d-15)) then
tmp = exp(((log(sqrt(((x_46re * x_46re) + (x_46im * x_46im)))) * y_46re) - t_0))
else
tmp = t_1 * exp(((y_46re * log(x_46im)) - t_0))
end if
code = tmp
end function
public static double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = Math.atan2(x_46_im, x_46_re) * y_46_im;
double t_1 = Math.cos((y_46_re * Math.atan2(x_46_im, x_46_re)));
double tmp;
if (x_46_im <= -1.02e+123) {
tmp = t_1 * Math.exp(((y_46_re * Math.log(-x_46_im)) - t_0));
} else if ((x_46_im <= 1.02e-109) || (!(x_46_im <= 8.8e-36) && (x_46_im <= 6.8e-15))) {
tmp = Math.exp(((Math.log(Math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0));
} else {
tmp = t_1 * Math.exp(((y_46_re * Math.log(x_46_im)) - t_0));
}
return tmp;
}
def code(x_46_re, x_46_im, y_46_re, y_46_im): t_0 = math.atan2(x_46_im, x_46_re) * y_46_im t_1 = math.cos((y_46_re * math.atan2(x_46_im, x_46_re))) tmp = 0 if x_46_im <= -1.02e+123: tmp = t_1 * math.exp(((y_46_re * math.log(-x_46_im)) - t_0)) elif (x_46_im <= 1.02e-109) or (not (x_46_im <= 8.8e-36) and (x_46_im <= 6.8e-15)): tmp = math.exp(((math.log(math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0)) else: tmp = t_1 * math.exp(((y_46_re * math.log(x_46_im)) - t_0)) return tmp
function code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = Float64(atan(x_46_im, x_46_re) * y_46_im) t_1 = cos(Float64(y_46_re * atan(x_46_im, x_46_re))) tmp = 0.0 if (x_46_im <= -1.02e+123) tmp = Float64(t_1 * exp(Float64(Float64(y_46_re * log(Float64(-x_46_im))) - t_0))); elseif ((x_46_im <= 1.02e-109) || (!(x_46_im <= 8.8e-36) && (x_46_im <= 6.8e-15))) tmp = exp(Float64(Float64(log(sqrt(Float64(Float64(x_46_re * x_46_re) + Float64(x_46_im * x_46_im)))) * y_46_re) - t_0)); else tmp = Float64(t_1 * exp(Float64(Float64(y_46_re * log(x_46_im)) - t_0))); end return tmp end
function tmp_2 = code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = atan2(x_46_im, x_46_re) * y_46_im; t_1 = cos((y_46_re * atan2(x_46_im, x_46_re))); tmp = 0.0; if (x_46_im <= -1.02e+123) tmp = t_1 * exp(((y_46_re * log(-x_46_im)) - t_0)); elseif ((x_46_im <= 1.02e-109) || (~((x_46_im <= 8.8e-36)) && (x_46_im <= 6.8e-15))) tmp = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0)); else tmp = t_1 * exp(((y_46_re * log(x_46_im)) - t_0)); end tmp_2 = tmp; end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := Block[{t$95$0 = N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]}, Block[{t$95$1 = N[Cos[N[(y$46$re * N[ArcTan[x$46$im / x$46$re], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[x$46$im, -1.02e+123], N[(t$95$1 * N[Exp[N[(N[(y$46$re * N[Log[(-x$46$im)], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], If[Or[LessEqual[x$46$im, 1.02e-109], And[N[Not[LessEqual[x$46$im, 8.8e-36]], $MachinePrecision], LessEqual[x$46$im, 6.8e-15]]], N[Exp[N[(N[(N[Log[N[Sqrt[N[(N[(x$46$re * x$46$re), $MachinePrecision] + N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] * y$46$re), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision], N[(t$95$1 * N[Exp[N[(N[(y$46$re * N[Log[x$46$im], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im\\
t_1 := \cos \left(y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\right)\\
\mathbf{if}\;x.im \leq -1.02 \cdot 10^{+123}:\\
\;\;\;\;t_1 \cdot e^{y.re \cdot \log \left(-x.im\right) - t_0}\\
\mathbf{elif}\;x.im \leq 1.02 \cdot 10^{-109} \lor \neg \left(x.im \leq 8.8 \cdot 10^{-36}\right) \land x.im \leq 6.8 \cdot 10^{-15}:\\
\;\;\;\;e^{\log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right) \cdot y.re - t_0}\\
\mathbf{else}:\\
\;\;\;\;t_1 \cdot e^{y.re \cdot \log x.im - t_0}\\
\end{array}
\end{array}
if x.im < -1.02e123Initial program 8.1%
Taylor expanded in y.im around 0 49.5%
Taylor expanded in x.im around -inf 75.7%
mul-1-neg75.7%
Simplified75.7%
if -1.02e123 < x.im < 1.02e-109 or 8.7999999999999997e-36 < x.im < 6.8000000000000001e-15Initial program 49.2%
Taylor expanded in y.im around 0 71.5%
Taylor expanded in y.re around 0 73.0%
if 1.02e-109 < x.im < 8.7999999999999997e-36 or 6.8000000000000001e-15 < x.im Initial program 45.0%
Taylor expanded in y.im around 0 54.7%
Taylor expanded in x.re around 0 76.7%
Final simplification74.7%
(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (* (atan2 x.im x.re) y.im)))
(if (or (<= x.im 1.75e-113) (and (not (<= x.im 5.5e-36)) (<= x.im 2.6e-15)))
(exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) t_0))
(* (cos (* y.re (atan2 x.im x.re))) (exp (- (* y.re (log x.im)) t_0))))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = atan2(x_46_im, x_46_re) * y_46_im;
double tmp;
if ((x_46_im <= 1.75e-113) || (!(x_46_im <= 5.5e-36) && (x_46_im <= 2.6e-15))) {
tmp = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0));
} else {
tmp = cos((y_46_re * atan2(x_46_im, x_46_re))) * exp(((y_46_re * log(x_46_im)) - t_0));
}
return tmp;
}
real(8) function code(x_46re, x_46im, y_46re, y_46im)
real(8), intent (in) :: x_46re
real(8), intent (in) :: x_46im
real(8), intent (in) :: y_46re
real(8), intent (in) :: y_46im
real(8) :: t_0
real(8) :: tmp
t_0 = atan2(x_46im, x_46re) * y_46im
if ((x_46im <= 1.75d-113) .or. (.not. (x_46im <= 5.5d-36)) .and. (x_46im <= 2.6d-15)) then
tmp = exp(((log(sqrt(((x_46re * x_46re) + (x_46im * x_46im)))) * y_46re) - t_0))
else
tmp = cos((y_46re * atan2(x_46im, x_46re))) * exp(((y_46re * log(x_46im)) - t_0))
end if
code = tmp
end function
public static double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = Math.atan2(x_46_im, x_46_re) * y_46_im;
double tmp;
if ((x_46_im <= 1.75e-113) || (!(x_46_im <= 5.5e-36) && (x_46_im <= 2.6e-15))) {
tmp = Math.exp(((Math.log(Math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0));
} else {
tmp = Math.cos((y_46_re * Math.atan2(x_46_im, x_46_re))) * Math.exp(((y_46_re * Math.log(x_46_im)) - t_0));
}
return tmp;
}
def code(x_46_re, x_46_im, y_46_re, y_46_im): t_0 = math.atan2(x_46_im, x_46_re) * y_46_im tmp = 0 if (x_46_im <= 1.75e-113) or (not (x_46_im <= 5.5e-36) and (x_46_im <= 2.6e-15)): tmp = math.exp(((math.log(math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0)) else: tmp = math.cos((y_46_re * math.atan2(x_46_im, x_46_re))) * math.exp(((y_46_re * math.log(x_46_im)) - t_0)) return tmp
function code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = Float64(atan(x_46_im, x_46_re) * y_46_im) tmp = 0.0 if ((x_46_im <= 1.75e-113) || (!(x_46_im <= 5.5e-36) && (x_46_im <= 2.6e-15))) tmp = exp(Float64(Float64(log(sqrt(Float64(Float64(x_46_re * x_46_re) + Float64(x_46_im * x_46_im)))) * y_46_re) - t_0)); else tmp = Float64(cos(Float64(y_46_re * atan(x_46_im, x_46_re))) * exp(Float64(Float64(y_46_re * log(x_46_im)) - t_0))); end return tmp end
function tmp_2 = code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = atan2(x_46_im, x_46_re) * y_46_im; tmp = 0.0; if ((x_46_im <= 1.75e-113) || (~((x_46_im <= 5.5e-36)) && (x_46_im <= 2.6e-15))) tmp = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0)); else tmp = cos((y_46_re * atan2(x_46_im, x_46_re))) * exp(((y_46_re * log(x_46_im)) - t_0)); end tmp_2 = tmp; end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := Block[{t$95$0 = N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]}, If[Or[LessEqual[x$46$im, 1.75e-113], And[N[Not[LessEqual[x$46$im, 5.5e-36]], $MachinePrecision], LessEqual[x$46$im, 2.6e-15]]], N[Exp[N[(N[(N[Log[N[Sqrt[N[(N[(x$46$re * x$46$re), $MachinePrecision] + N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] * y$46$re), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision], N[(N[Cos[N[(y$46$re * N[ArcTan[x$46$im / x$46$re], $MachinePrecision]), $MachinePrecision]], $MachinePrecision] * N[Exp[N[(N[(y$46$re * N[Log[x$46$im], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im\\
\mathbf{if}\;x.im \leq 1.75 \cdot 10^{-113} \lor \neg \left(x.im \leq 5.5 \cdot 10^{-36}\right) \land x.im \leq 2.6 \cdot 10^{-15}:\\
\;\;\;\;e^{\log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right) \cdot y.re - t_0}\\
\mathbf{else}:\\
\;\;\;\;\cos \left(y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\right) \cdot e^{y.re \cdot \log x.im - t_0}\\
\end{array}
\end{array}
if x.im < 1.75000000000000014e-113 or 5.49999999999999984e-36 < x.im < 2.60000000000000004e-15Initial program 39.9%
Taylor expanded in y.im around 0 66.5%
Taylor expanded in y.re around 0 68.3%
if 1.75000000000000014e-113 < x.im < 5.49999999999999984e-36 or 2.60000000000000004e-15 < x.im Initial program 45.0%
Taylor expanded in y.im around 0 54.7%
Taylor expanded in x.re around 0 76.7%
Final simplification71.3%
(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (* (atan2 x.im x.re) y.im))
(t_1 (cos (* y.re (atan2 x.im x.re)))))
(if (<= x.re -1e-309)
(* t_1 (exp (- (* y.re (log (- x.re))) t_0)))
(* t_1 (exp (- (* y.re (log x.re)) t_0))))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = atan2(x_46_im, x_46_re) * y_46_im;
double t_1 = cos((y_46_re * atan2(x_46_im, x_46_re)));
double tmp;
if (x_46_re <= -1e-309) {
tmp = t_1 * exp(((y_46_re * log(-x_46_re)) - t_0));
} else {
tmp = t_1 * exp(((y_46_re * log(x_46_re)) - t_0));
}
return tmp;
}
real(8) function code(x_46re, x_46im, y_46re, y_46im)
real(8), intent (in) :: x_46re
real(8), intent (in) :: x_46im
real(8), intent (in) :: y_46re
real(8), intent (in) :: y_46im
real(8) :: t_0
real(8) :: t_1
real(8) :: tmp
t_0 = atan2(x_46im, x_46re) * y_46im
t_1 = cos((y_46re * atan2(x_46im, x_46re)))
if (x_46re <= (-1d-309)) then
tmp = t_1 * exp(((y_46re * log(-x_46re)) - t_0))
else
tmp = t_1 * exp(((y_46re * log(x_46re)) - t_0))
end if
code = tmp
end function
public static double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = Math.atan2(x_46_im, x_46_re) * y_46_im;
double t_1 = Math.cos((y_46_re * Math.atan2(x_46_im, x_46_re)));
double tmp;
if (x_46_re <= -1e-309) {
tmp = t_1 * Math.exp(((y_46_re * Math.log(-x_46_re)) - t_0));
} else {
tmp = t_1 * Math.exp(((y_46_re * Math.log(x_46_re)) - t_0));
}
return tmp;
}
def code(x_46_re, x_46_im, y_46_re, y_46_im): t_0 = math.atan2(x_46_im, x_46_re) * y_46_im t_1 = math.cos((y_46_re * math.atan2(x_46_im, x_46_re))) tmp = 0 if x_46_re <= -1e-309: tmp = t_1 * math.exp(((y_46_re * math.log(-x_46_re)) - t_0)) else: tmp = t_1 * math.exp(((y_46_re * math.log(x_46_re)) - t_0)) return tmp
function code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = Float64(atan(x_46_im, x_46_re) * y_46_im) t_1 = cos(Float64(y_46_re * atan(x_46_im, x_46_re))) tmp = 0.0 if (x_46_re <= -1e-309) tmp = Float64(t_1 * exp(Float64(Float64(y_46_re * log(Float64(-x_46_re))) - t_0))); else tmp = Float64(t_1 * exp(Float64(Float64(y_46_re * log(x_46_re)) - t_0))); end return tmp end
function tmp_2 = code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = atan2(x_46_im, x_46_re) * y_46_im; t_1 = cos((y_46_re * atan2(x_46_im, x_46_re))); tmp = 0.0; if (x_46_re <= -1e-309) tmp = t_1 * exp(((y_46_re * log(-x_46_re)) - t_0)); else tmp = t_1 * exp(((y_46_re * log(x_46_re)) - t_0)); end tmp_2 = tmp; end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := Block[{t$95$0 = N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]}, Block[{t$95$1 = N[Cos[N[(y$46$re * N[ArcTan[x$46$im / x$46$re], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[x$46$re, -1e-309], N[(t$95$1 * N[Exp[N[(N[(y$46$re * N[Log[(-x$46$re)], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(t$95$1 * N[Exp[N[(N[(y$46$re * N[Log[x$46$re], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im\\
t_1 := \cos \left(y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\right)\\
\mathbf{if}\;x.re \leq -1 \cdot 10^{-309}:\\
\;\;\;\;t_1 \cdot e^{y.re \cdot \log \left(-x.re\right) - t_0}\\
\mathbf{else}:\\
\;\;\;\;t_1 \cdot e^{y.re \cdot \log x.re - t_0}\\
\end{array}
\end{array}
if x.re < -1.000000000000002e-309Initial program 39.5%
Taylor expanded in y.im around 0 62.6%
Taylor expanded in x.re around -inf 73.0%
mul-1-neg71.5%
Simplified73.0%
if -1.000000000000002e-309 < x.re Initial program 44.0%
Taylor expanded in y.im around 0 61.8%
Taylor expanded in x.re around inf 73.7%
Final simplification73.4%
(FPCore (x.re x.im y.re y.im)
:precision binary64
(let* ((t_0 (* (atan2 x.im x.re) y.im)))
(if (<= x.re 1.95e+62)
(exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) t_0))
(* (cos (* y.re (atan2 x.im x.re))) (exp (- (* y.re (log x.re)) t_0))))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = atan2(x_46_im, x_46_re) * y_46_im;
double tmp;
if (x_46_re <= 1.95e+62) {
tmp = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0));
} else {
tmp = cos((y_46_re * atan2(x_46_im, x_46_re))) * exp(((y_46_re * log(x_46_re)) - t_0));
}
return tmp;
}
real(8) function code(x_46re, x_46im, y_46re, y_46im)
real(8), intent (in) :: x_46re
real(8), intent (in) :: x_46im
real(8), intent (in) :: y_46re
real(8), intent (in) :: y_46im
real(8) :: t_0
real(8) :: tmp
t_0 = atan2(x_46im, x_46re) * y_46im
if (x_46re <= 1.95d+62) then
tmp = exp(((log(sqrt(((x_46re * x_46re) + (x_46im * x_46im)))) * y_46re) - t_0))
else
tmp = cos((y_46re * atan2(x_46im, x_46re))) * exp(((y_46re * log(x_46re)) - t_0))
end if
code = tmp
end function
public static double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
double t_0 = Math.atan2(x_46_im, x_46_re) * y_46_im;
double tmp;
if (x_46_re <= 1.95e+62) {
tmp = Math.exp(((Math.log(Math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0));
} else {
tmp = Math.cos((y_46_re * Math.atan2(x_46_im, x_46_re))) * Math.exp(((y_46_re * Math.log(x_46_re)) - t_0));
}
return tmp;
}
def code(x_46_re, x_46_im, y_46_re, y_46_im): t_0 = math.atan2(x_46_im, x_46_re) * y_46_im tmp = 0 if x_46_re <= 1.95e+62: tmp = math.exp(((math.log(math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0)) else: tmp = math.cos((y_46_re * math.atan2(x_46_im, x_46_re))) * math.exp(((y_46_re * math.log(x_46_re)) - t_0)) return tmp
function code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = Float64(atan(x_46_im, x_46_re) * y_46_im) tmp = 0.0 if (x_46_re <= 1.95e+62) tmp = exp(Float64(Float64(log(sqrt(Float64(Float64(x_46_re * x_46_re) + Float64(x_46_im * x_46_im)))) * y_46_re) - t_0)); else tmp = Float64(cos(Float64(y_46_re * atan(x_46_im, x_46_re))) * exp(Float64(Float64(y_46_re * log(x_46_re)) - t_0))); end return tmp end
function tmp_2 = code(x_46_re, x_46_im, y_46_re, y_46_im) t_0 = atan2(x_46_im, x_46_re) * y_46_im; tmp = 0.0; if (x_46_re <= 1.95e+62) tmp = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - t_0)); else tmp = cos((y_46_re * atan2(x_46_im, x_46_re))) * exp(((y_46_re * log(x_46_re)) - t_0)); end tmp_2 = tmp; end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := Block[{t$95$0 = N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]}, If[LessEqual[x$46$re, 1.95e+62], N[Exp[N[(N[(N[Log[N[Sqrt[N[(N[(x$46$re * x$46$re), $MachinePrecision] + N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] * y$46$re), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision], N[(N[Cos[N[(y$46$re * N[ArcTan[x$46$im / x$46$re], $MachinePrecision]), $MachinePrecision]], $MachinePrecision] * N[Exp[N[(N[(y$46$re * N[Log[x$46$re], $MachinePrecision]), $MachinePrecision] - t$95$0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}
\\
\begin{array}{l}
t_0 := \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im\\
\mathbf{if}\;x.re \leq 1.95 \cdot 10^{+62}:\\
\;\;\;\;e^{\log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right) \cdot y.re - t_0}\\
\mathbf{else}:\\
\;\;\;\;\cos \left(y.re \cdot \tan^{-1}_* \frac{x.im}{x.re}\right) \cdot e^{y.re \cdot \log x.re - t_0}\\
\end{array}
\end{array}
if x.re < 1.95e62Initial program 47.0%
Taylor expanded in y.im around 0 64.3%
Taylor expanded in y.re around 0 66.2%
if 1.95e62 < x.re Initial program 20.4%
Taylor expanded in y.im around 0 53.4%
Taylor expanded in x.re around inf 77.8%
Final simplification68.5%
(FPCore (x.re x.im y.re y.im) :precision binary64 (exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) (* (atan2 x.im x.re) y.im))))
double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
return exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - (atan2(x_46_im, x_46_re) * y_46_im)));
}
real(8) function code(x_46re, x_46im, y_46re, y_46im)
real(8), intent (in) :: x_46re
real(8), intent (in) :: x_46im
real(8), intent (in) :: y_46re
real(8), intent (in) :: y_46im
code = exp(((log(sqrt(((x_46re * x_46re) + (x_46im * x_46im)))) * y_46re) - (atan2(x_46im, x_46re) * y_46im)))
end function
public static double code(double x_46_re, double x_46_im, double y_46_re, double y_46_im) {
return Math.exp(((Math.log(Math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - (Math.atan2(x_46_im, x_46_re) * y_46_im)));
}
def code(x_46_re, x_46_im, y_46_re, y_46_im): return math.exp(((math.log(math.sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - (math.atan2(x_46_im, x_46_re) * y_46_im)))
function code(x_46_re, x_46_im, y_46_re, y_46_im) return exp(Float64(Float64(log(sqrt(Float64(Float64(x_46_re * x_46_re) + Float64(x_46_im * x_46_im)))) * y_46_re) - Float64(atan(x_46_im, x_46_re) * y_46_im))) end
function tmp = code(x_46_re, x_46_im, y_46_re, y_46_im) tmp = exp(((log(sqrt(((x_46_re * x_46_re) + (x_46_im * x_46_im)))) * y_46_re) - (atan2(x_46_im, x_46_re) * y_46_im))); end
code[x$46$re_, x$46$im_, y$46$re_, y$46$im_] := N[Exp[N[(N[(N[Log[N[Sqrt[N[(N[(x$46$re * x$46$re), $MachinePrecision] + N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]], $MachinePrecision] * y$46$re), $MachinePrecision] - N[(N[ArcTan[x$46$im / x$46$re], $MachinePrecision] * y$46$im), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}
\\
e^{\log \left(\sqrt{x.re \cdot x.re + x.im \cdot x.im}\right) \cdot y.re - \tan^{-1}_* \frac{x.im}{x.re} \cdot y.im}
\end{array}
Initial program 41.8%
Taylor expanded in y.im around 0 62.2%
Taylor expanded in y.re around 0 63.3%
Final simplification63.3%
herbie shell --seed 2023174
(FPCore (x.re x.im y.re y.im)
:name "powComplex, real part"
:precision binary64
(* (exp (- (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.re) (* (atan2 x.im x.re) y.im))) (cos (+ (* (log (sqrt (+ (* x.re x.re) (* x.im x.im)))) y.im) (* (atan2 x.im x.re) y.re)))))