\[\frac{\left(x \cdot 2\right) \cdot y}{x - y}
\]
↓
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.9 \cdot 10^{+22} \lor \neg \left(x \leq 10^{-7}\right):\\
\;\;\;\;\frac{x}{x - y} \cdot \left(y \cdot 2\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(-2 \cdot \frac{y}{y - x}\right)\\
\end{array}
\]
(FPCore (x y) :precision binary64 (/ (* (* x 2.0) y) (- x y)))
↓
(FPCore (x y)
:precision binary64
(if (or (<= x -1.9e+22) (not (<= x 1e-7)))
(* (/ x (- x y)) (* y 2.0))
(* x (* -2.0 (/ y (- y x))))))
double code(double x, double y) {
return ((x * 2.0) * y) / (x - y);
}
↓
double code(double x, double y) {
double tmp;
if ((x <= -1.9e+22) || !(x <= 1e-7)) {
tmp = (x / (x - y)) * (y * 2.0);
} else {
tmp = x * (-2.0 * (y / (y - x)));
}
return tmp;
}
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
code = ((x * 2.0d0) * y) / (x - y)
end function
↓
real(8) function code(x, y)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8) :: tmp
if ((x <= (-1.9d+22)) .or. (.not. (x <= 1d-7))) then
tmp = (x / (x - y)) * (y * 2.0d0)
else
tmp = x * ((-2.0d0) * (y / (y - x)))
end if
code = tmp
end function
public static double code(double x, double y) {
return ((x * 2.0) * y) / (x - y);
}
↓
public static double code(double x, double y) {
double tmp;
if ((x <= -1.9e+22) || !(x <= 1e-7)) {
tmp = (x / (x - y)) * (y * 2.0);
} else {
tmp = x * (-2.0 * (y / (y - x)));
}
return tmp;
}
def code(x, y):
return ((x * 2.0) * y) / (x - y)
↓
def code(x, y):
tmp = 0
if (x <= -1.9e+22) or not (x <= 1e-7):
tmp = (x / (x - y)) * (y * 2.0)
else:
tmp = x * (-2.0 * (y / (y - x)))
return tmp
function code(x, y)
return Float64(Float64(Float64(x * 2.0) * y) / Float64(x - y))
end
↓
function code(x, y)
tmp = 0.0
if ((x <= -1.9e+22) || !(x <= 1e-7))
tmp = Float64(Float64(x / Float64(x - y)) * Float64(y * 2.0));
else
tmp = Float64(x * Float64(-2.0 * Float64(y / Float64(y - x))));
end
return tmp
end
function tmp = code(x, y)
tmp = ((x * 2.0) * y) / (x - y);
end
↓
function tmp_2 = code(x, y)
tmp = 0.0;
if ((x <= -1.9e+22) || ~((x <= 1e-7)))
tmp = (x / (x - y)) * (y * 2.0);
else
tmp = x * (-2.0 * (y / (y - x)));
end
tmp_2 = tmp;
end
code[x_, y_] := N[(N[(N[(x * 2.0), $MachinePrecision] * y), $MachinePrecision] / N[(x - y), $MachinePrecision]), $MachinePrecision]
↓
code[x_, y_] := If[Or[LessEqual[x, -1.9e+22], N[Not[LessEqual[x, 1e-7]], $MachinePrecision]], N[(N[(x / N[(x - y), $MachinePrecision]), $MachinePrecision] * N[(y * 2.0), $MachinePrecision]), $MachinePrecision], N[(x * N[(-2.0 * N[(y / N[(y - x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\frac{\left(x \cdot 2\right) \cdot y}{x - y}
↓
\begin{array}{l}
\mathbf{if}\;x \leq -1.9 \cdot 10^{+22} \lor \neg \left(x \leq 10^{-7}\right):\\
\;\;\;\;\frac{x}{x - y} \cdot \left(y \cdot 2\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(-2 \cdot \frac{y}{y - x}\right)\\
\end{array}