(FPCore (x) :precision binary64 (* 100.0 (/ (- x x) x)))
(FPCore (x) :precision binary64 (* 100.0 (/ 0.0 x)))
double code(double x) {
return 100.0 * ((x - x) / x);
}
double code(double x) {
return 100.0 * (0.0 / x);
}
real(8) function code(x)
real(8), intent (in) :: x
code = 100.0d0 * ((x - x) / x)
end function
real(8) function code(x)
real(8), intent (in) :: x
code = 100.0d0 * (0.0d0 / x)
end function
public static double code(double x) {
return 100.0 * ((x - x) / x);
}
public static double code(double x) {
return 100.0 * (0.0 / x);
}
def code(x): return 100.0 * ((x - x) / x)
def code(x): return 100.0 * (0.0 / x)
function code(x) return Float64(100.0 * Float64(Float64(x - x) / x)) end
function code(x) return Float64(100.0 * Float64(0.0 / x)) end
function tmp = code(x) tmp = 100.0 * ((x - x) / x); end
function tmp = code(x) tmp = 100.0 * (0.0 / x); end
code[x_] := N[(100.0 * N[(N[(x - x), $MachinePrecision] / x), $MachinePrecision]), $MachinePrecision]
code[x_] := N[(100.0 * N[(0.0 / x), $MachinePrecision]), $MachinePrecision]
100 \cdot \frac{x - x}{x}
100 \cdot \frac{0}{x}
Results
| Original | 0 |
|---|---|
| Target | 0 |
| Herbie | 0 |
Initial program 0
Simplified0
[Start]0 | \[ 100 \cdot \frac{x - x}{x}
\] |
|---|---|
rational.json-simplify-3 [=>]0 | \[ 100 \cdot \frac{\color{blue}{0}}{x}
\] |
Final simplification0
herbie shell --seed 2023077
(FPCore (x)
:name "ReportTypes:explainFloat from gipeda-0.1.2.1"
:precision binary64
:herbie-target
0.0
(* 100.0 (/ (- x x) x)))