\[1 + \frac{4 \cdot \left(\left(x + y \cdot 0.75\right) - z\right)}{y}
\]
↓
\[1 + \frac{4 \cdot \left(\left(x + y \cdot 0.75\right) - z\right)}{y}
\]
(FPCore (x y z)
:precision binary64
(+ 1.0 (/ (* 4.0 (- (+ x (* y 0.75)) z)) y)))
↓
(FPCore (x y z)
:precision binary64
(+ 1.0 (/ (* 4.0 (- (+ x (* y 0.75)) z)) y)))
double code(double x, double y, double z) {
return 1.0 + ((4.0 * ((x + (y * 0.75)) - z)) / y);
}
↓
double code(double x, double y, double z) {
return 1.0 + ((4.0 * ((x + (y * 0.75)) - 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.75d0)) - 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.75d0)) - z)) / y)
end function
public static double code(double x, double y, double z) {
return 1.0 + ((4.0 * ((x + (y * 0.75)) - z)) / y);
}
↓
public static double code(double x, double y, double z) {
return 1.0 + ((4.0 * ((x + (y * 0.75)) - z)) / y);
}
def code(x, y, z):
return 1.0 + ((4.0 * ((x + (y * 0.75)) - z)) / y)
↓
def code(x, y, z):
return 1.0 + ((4.0 * ((x + (y * 0.75)) - z)) / y)
function code(x, y, z)
return Float64(1.0 + Float64(Float64(4.0 * Float64(Float64(x + Float64(y * 0.75)) - z)) / y))
end
↓
function code(x, y, z)
return Float64(1.0 + Float64(Float64(4.0 * Float64(Float64(x + Float64(y * 0.75)) - z)) / y))
end
function tmp = code(x, y, z)
tmp = 1.0 + ((4.0 * ((x + (y * 0.75)) - z)) / y);
end
↓
function tmp = code(x, y, z)
tmp = 1.0 + ((4.0 * ((x + (y * 0.75)) - z)) / y);
end
code[x_, y_, z_] := N[(1.0 + N[(N[(4.0 * N[(N[(x + N[(y * 0.75), $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.75), $MachinePrecision]), $MachinePrecision] - z), $MachinePrecision]), $MachinePrecision] / y), $MachinePrecision]), $MachinePrecision]
1 + \frac{4 \cdot \left(\left(x + y \cdot 0.75\right) - z\right)}{y}
↓
1 + \frac{4 \cdot \left(\left(x + y \cdot 0.75\right) - z\right)}{y}
Alternatives
| Alternative 1 |
|---|
| Error | 29.5 |
|---|
| Cost | 1376 |
|---|
\[\begin{array}{l}
t_0 := 4 \cdot \frac{x}{y}\\
t_1 := -4 \cdot \frac{z}{y}\\
\mathbf{if}\;y \leq -3.6 \cdot 10^{+76}:\\
\;\;\;\;4\\
\mathbf{elif}\;y \leq -7.5 \cdot 10^{+36}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -1.6 \cdot 10^{-103}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -4.8 \cdot 10^{-215}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 1.22 \cdot 10^{-285}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.02 \cdot 10^{-186}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 6 \cdot 10^{-130}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 3.1 \cdot 10^{+26}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;4\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.4 |
|---|
| Cost | 1104 |
|---|
\[\begin{array}{l}
t_0 := 1 + \frac{4}{\frac{y}{x - z}}\\
t_1 := 4 + -4 \cdot \frac{z}{y}\\
\mathbf{if}\;x \leq -500000000:\\
\;\;\;\;4 + 4 \cdot \frac{x}{y}\\
\mathbf{elif}\;x \leq 5.5 \cdot 10^{-90}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 5.5 \cdot 10^{-53}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.8 \cdot 10^{+46}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.9 |
|---|
| Cost | 976 |
|---|
\[\begin{array}{l}
t_0 := 4 + -4 \cdot \frac{z}{y}\\
t_1 := 4 \cdot \frac{x - z}{y}\\
\mathbf{if}\;x \leq -1 \cdot 10^{+128}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 6.4 \cdot 10^{-103}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.1 \cdot 10^{-52}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 2.5 \cdot 10^{+46}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 11.1 |
|---|
| Cost | 976 |
|---|
\[\begin{array}{l}
t_0 := 4 \cdot \frac{x - z}{y}\\
t_1 := 4 + -4 \cdot \frac{z}{y}\\
\mathbf{if}\;x \leq -7500:\\
\;\;\;\;4 + 4 \cdot \frac{x}{y}\\
\mathbf{elif}\;x \leq 6.4 \cdot 10^{-103}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 2.9 \cdot 10^{-53}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 3.2 \cdot 10^{+46}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 30.3 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := -4 \cdot \frac{z}{y}\\
\mathbf{if}\;z \leq -1.25 \cdot 10^{+68}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -2.25 \cdot 10^{-22}:\\
\;\;\;\;4\\
\mathbf{elif}\;z \leq -3 \cdot 10^{-51}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.1:\\
\;\;\;\;4\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 16.6 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.36 \cdot 10^{+79}:\\
\;\;\;\;4\\
\mathbf{elif}\;y \leq 3.3 \cdot 10^{+97}:\\
\;\;\;\;4 \cdot \frac{x - z}{y}\\
\mathbf{else}:\\
\;\;\;\;4\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.2 |
|---|
| Cost | 576 |
|---|
\[4 + \frac{4}{y} \cdot \left(x - z\right)
\]
| Alternative 8 |
|---|
| Error | 36.5 |
|---|
| Cost | 64 |
|---|
\[4
\]