\[\left(x.re \cdot x.re - x.im \cdot x.im\right) \cdot x.im + \left(x.re \cdot x.im + x.im \cdot x.re\right) \cdot x.re
\]
↓
\[x.re \cdot \left(x.im \cdot \left(x.re \cdot 3\right)\right) - {x.im}^{3}
\]
(FPCore (x.re x.im)
:precision binary64
(+
(* (- (* x.re x.re) (* x.im x.im)) x.im)
(* (+ (* x.re x.im) (* x.im x.re)) x.re)))
↓
(FPCore (x.re x.im)
:precision binary64
(- (* x.re (* x.im (* x.re 3.0))) (pow x.im 3.0)))
double code(double x_46_re, double x_46_im) {
return (((x_46_re * x_46_re) - (x_46_im * x_46_im)) * x_46_im) + (((x_46_re * x_46_im) + (x_46_im * x_46_re)) * x_46_re);
}
↓
double code(double x_46_re, double x_46_im) {
return (x_46_re * (x_46_im * (x_46_re * 3.0))) - pow(x_46_im, 3.0);
}
real(8) function code(x_46re, x_46im)
real(8), intent (in) :: x_46re
real(8), intent (in) :: x_46im
code = (((x_46re * x_46re) - (x_46im * x_46im)) * x_46im) + (((x_46re * x_46im) + (x_46im * x_46re)) * x_46re)
end function
↓
real(8) function code(x_46re, x_46im)
real(8), intent (in) :: x_46re
real(8), intent (in) :: x_46im
code = (x_46re * (x_46im * (x_46re * 3.0d0))) - (x_46im ** 3.0d0)
end function
public static double code(double x_46_re, double x_46_im) {
return (((x_46_re * x_46_re) - (x_46_im * x_46_im)) * x_46_im) + (((x_46_re * x_46_im) + (x_46_im * x_46_re)) * x_46_re);
}
↓
public static double code(double x_46_re, double x_46_im) {
return (x_46_re * (x_46_im * (x_46_re * 3.0))) - Math.pow(x_46_im, 3.0);
}
def code(x_46_re, x_46_im):
return (((x_46_re * x_46_re) - (x_46_im * x_46_im)) * x_46_im) + (((x_46_re * x_46_im) + (x_46_im * x_46_re)) * x_46_re)
↓
def code(x_46_re, x_46_im):
return (x_46_re * (x_46_im * (x_46_re * 3.0))) - math.pow(x_46_im, 3.0)
function code(x_46_re, x_46_im)
return Float64(Float64(Float64(Float64(x_46_re * x_46_re) - Float64(x_46_im * x_46_im)) * x_46_im) + Float64(Float64(Float64(x_46_re * x_46_im) + Float64(x_46_im * x_46_re)) * x_46_re))
end
↓
function code(x_46_re, x_46_im)
return Float64(Float64(x_46_re * Float64(x_46_im * Float64(x_46_re * 3.0))) - (x_46_im ^ 3.0))
end
function tmp = code(x_46_re, x_46_im)
tmp = (((x_46_re * x_46_re) - (x_46_im * x_46_im)) * x_46_im) + (((x_46_re * x_46_im) + (x_46_im * x_46_re)) * x_46_re);
end
↓
function tmp = code(x_46_re, x_46_im)
tmp = (x_46_re * (x_46_im * (x_46_re * 3.0))) - (x_46_im ^ 3.0);
end
code[x$46$re_, x$46$im_] := N[(N[(N[(N[(x$46$re * x$46$re), $MachinePrecision] - N[(x$46$im * x$46$im), $MachinePrecision]), $MachinePrecision] * x$46$im), $MachinePrecision] + N[(N[(N[(x$46$re * x$46$im), $MachinePrecision] + N[(x$46$im * x$46$re), $MachinePrecision]), $MachinePrecision] * x$46$re), $MachinePrecision]), $MachinePrecision]
↓
code[x$46$re_, x$46$im_] := N[(N[(x$46$re * N[(x$46$im * N[(x$46$re * 3.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[Power[x$46$im, 3.0], $MachinePrecision]), $MachinePrecision]
\left(x.re \cdot x.re - x.im \cdot x.im\right) \cdot x.im + \left(x.re \cdot x.im + x.im \cdot x.re\right) \cdot x.re
↓
x.re \cdot \left(x.im \cdot \left(x.re \cdot 3\right)\right) - {x.im}^{3}
Alternatives
| Alternative 1 |
|---|
| Error | 0.2 |
|---|
| Cost | 1480 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x.re \leq -1.1 \cdot 10^{+94}:\\
\;\;\;\;x.re \cdot \left(3 \cdot \left(x.re \cdot x.im\right)\right)\\
\mathbf{elif}\;x.re \leq 4 \cdot 10^{+133}:\\
\;\;\;\;x.re \cdot \left(x.re \cdot x.im + x.re \cdot x.im\right) + x.im \cdot \left(x.re \cdot x.re - x.im \cdot x.im\right)\\
\mathbf{else}:\\
\;\;\;\;\left(x.re \cdot x.im\right) \cdot \left(x.re \cdot 3\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.3 |
|---|
| Cost | 1344 |
|---|
\[x.re \cdot \left(x.re \cdot x.im + x.re \cdot x.im\right) + \left(x.re + x.im\right) \cdot \frac{x.re - x.im}{\frac{1}{x.im}}
\]
| Alternative 3 |
|---|
| Error | 0.3 |
|---|
| Cost | 1344 |
|---|
\[\frac{x.re - x.im}{\frac{\frac{1}{x.re + x.im}}{x.im}} + x.re \cdot \left(x.re \cdot x.im + x.re \cdot x.im\right)
\]
| Alternative 4 |
|---|
| Error | 5.8 |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x.re \leq -4 \cdot 10^{-41} \lor \neg \left(x.re \leq 9.4 \cdot 10^{-79}\right):\\
\;\;\;\;3 \cdot \left(x.re \cdot \left(x.re \cdot x.im\right)\right)\\
\mathbf{else}:\\
\;\;\;\;x.im \cdot \left(x.im \cdot \left(-x.im\right)\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 5.9 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x.re \leq -1.02 \cdot 10^{-39}:\\
\;\;\;\;\left(x.re \cdot x.im\right) \cdot \left(x.re \cdot 3\right)\\
\mathbf{elif}\;x.re \leq 6.5 \cdot 10^{-79}:\\
\;\;\;\;x.im \cdot \left(x.im \cdot \left(-x.im\right)\right)\\
\mathbf{else}:\\
\;\;\;\;3 \cdot \left(x.re \cdot \left(x.re \cdot x.im\right)\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 28.1 |
|---|
| Cost | 384 |
|---|
\[x.im \cdot \left(x.im \cdot \left(-x.im\right)\right)
\]