\[1 + \frac{4 \cdot \left(\left(x + y \cdot 0.25\right) - z\right)}{y}
\]
↓
\[1 + \frac{4 \cdot \left(\left(x + y \cdot 0.25\right) - z\right)}{y}
\]
(FPCore (x y z)
:precision binary64
(+ 1.0 (/ (* 4.0 (- (+ x (* y 0.25)) z)) y)))
↓
(FPCore (x y z)
:precision binary64
(+ 1.0 (/ (* 4.0 (- (+ x (* y 0.25)) z)) y)))
double code(double x, double y, double z) {
return 1.0 + ((4.0 * ((x + (y * 0.25)) - z)) / y);
}
↓
double code(double x, double y, double z) {
return 1.0 + ((4.0 * ((x + (y * 0.25)) - z)) / y);
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = 1.0d0 + ((4.0d0 * ((x + (y * 0.25d0)) - z)) / y)
end function
↓
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = 1.0d0 + ((4.0d0 * ((x + (y * 0.25d0)) - z)) / y)
end function
public static double code(double x, double y, double z) {
return 1.0 + ((4.0 * ((x + (y * 0.25)) - z)) / y);
}
↓
public static double code(double x, double y, double z) {
return 1.0 + ((4.0 * ((x + (y * 0.25)) - z)) / y);
}
def code(x, y, z):
return 1.0 + ((4.0 * ((x + (y * 0.25)) - z)) / y)
↓
def code(x, y, z):
return 1.0 + ((4.0 * ((x + (y * 0.25)) - z)) / y)
function code(x, y, z)
return Float64(1.0 + Float64(Float64(4.0 * Float64(Float64(x + Float64(y * 0.25)) - z)) / y))
end
↓
function code(x, y, z)
return Float64(1.0 + Float64(Float64(4.0 * Float64(Float64(x + Float64(y * 0.25)) - z)) / y))
end
function tmp = code(x, y, z)
tmp = 1.0 + ((4.0 * ((x + (y * 0.25)) - z)) / y);
end
↓
function tmp = code(x, y, z)
tmp = 1.0 + ((4.0 * ((x + (y * 0.25)) - z)) / y);
end
code[x_, y_, z_] := N[(1.0 + N[(N[(4.0 * N[(N[(x + N[(y * 0.25), $MachinePrecision]), $MachinePrecision] - z), $MachinePrecision]), $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]
↓
code[x_, y_, z_] := N[(1.0 + N[(N[(4.0 * N[(N[(x + N[(y * 0.25), $MachinePrecision]), $MachinePrecision] - z), $MachinePrecision]), $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]
1 + \frac{4 \cdot \left(\left(x + y \cdot 0.25\right) - z\right)}{y}
↓
1 + \frac{4 \cdot \left(\left(x + y \cdot 0.25\right) - z\right)}{y}
Alternatives
| Alternative 1 |
|---|
| Error | 31.9 |
|---|
| Cost | 1112 |
|---|
\[\begin{array}{l}
t_0 := -4 \cdot \frac{z}{y}\\
t_1 := \frac{4 \cdot x}{y}\\
\mathbf{if}\;x \leq -5.3 \cdot 10^{+16}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -1.18 \cdot 10^{-260}:\\
\;\;\;\;2\\
\mathbf{elif}\;x \leq 2.4 \cdot 10^{-297}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.4 \cdot 10^{-181}:\\
\;\;\;\;2\\
\mathbf{elif}\;x \leq 1.2 \cdot 10^{-57}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 7.2 \cdot 10^{+163}:\\
\;\;\;\;2\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 17.3 |
|---|
| Cost | 977 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.95 \cdot 10^{+216}:\\
\;\;\;\;2\\
\mathbf{elif}\;y \leq -7.5 \cdot 10^{+199} \lor \neg \left(y \leq -3.9 \cdot 10^{+85}\right) \land y \leq 1.35 \cdot 10^{+76}:\\
\;\;\;\;4 \cdot \frac{x - z}{y}\\
\mathbf{else}:\\
\;\;\;\;2\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.2 |
|---|
| Cost | 832 |
|---|
\[1 + \frac{4}{\frac{y}{x + \left(y \cdot 0.25 - z\right)}}
\]
| Alternative 4 |
|---|
| Error | 12.0 |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3700000000000 \lor \neg \left(x \leq 1.1 \cdot 10^{+164}\right):\\
\;\;\;\;4 \cdot \frac{x - z}{y}\\
\mathbf{else}:\\
\;\;\;\;2 + -4 \cdot \frac{z}{y}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 8.8 |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.95 \lor \neg \left(x \leq 1.1 \cdot 10^{-55}\right):\\
\;\;\;\;2 + 4 \cdot \frac{x}{y}\\
\mathbf{else}:\\
\;\;\;\;2 + -4 \cdot \frac{z}{y}\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 30.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.05 \cdot 10^{-69}:\\
\;\;\;\;2\\
\mathbf{elif}\;y \leq 3.8 \cdot 10^{+48}:\\
\;\;\;\;z \cdot \frac{-4}{y}\\
\mathbf{else}:\\
\;\;\;\;2\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 30.4 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -9.5 \cdot 10^{-69}:\\
\;\;\;\;2\\
\mathbf{elif}\;y \leq 5.2 \cdot 10^{+46}:\\
\;\;\;\;-4 \cdot \frac{z}{y}\\
\mathbf{else}:\\
\;\;\;\;2\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 36.6 |
|---|
| Cost | 64 |
|---|
\[2
\]