subtraction fraction

Specification

?
\[\begin{array}{l} \\ \frac{-\left(f + n\right)}{f - n} \end{array} \]
(FPCore (f n) :precision binary64 (/ (- (+ f n)) (- f n)))
double code(double f, double n) {
	return -(f + n) / (f - n);
}
real(8) function code(f, n)
    real(8), intent (in) :: f
    real(8), intent (in) :: n
    code = -(f + n) / (f - n)
end function
public static double code(double f, double n) {
	return -(f + n) / (f - n);
}
def code(f, n):
	return -(f + n) / (f - n)
function code(f, n)
	return Float64(Float64(-Float64(f + n)) / Float64(f - n))
end
function tmp = code(f, n)
	tmp = -(f + n) / (f - n);
end
code[f_, n_] := N[((-N[(f + n), $MachinePrecision]) / N[(f - n), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{-\left(f + n\right)}{f - n}
\end{array}

Reproduce

?
herbie shell --seed 2024155 -o setup:simplify
(FPCore (f n)
  :name "subtraction fraction"
  :precision binary64
  (/ (- (+ f n)) (- f n)))

Please file a bug report with this information.

Backtrace

f can not be a variableLC
f100.../match/compiler.rkt55940
f100.../match/compiler.rkt55940
f100.../match/compiler.rkt55940
exprs+ctxs->sollya/home/nightlies/herbie/artem-popl-s-eval/src/run-sollya.rkt1260
run-sollya/home/nightlies/herbie/artem-popl-s-eval/src/run-sollya.rkt1790
sample-points/home/nightlies/herbie/artem-popl-s-eval/src/sampling.rkt1770
setup-context!/home/nightlies/herbie/artem-popl-s-eval/src/mainloop.rkt450
get-alternatives/report/home/nightlies/herbie/artem-popl-s-eval/src/sandbox.rkt1710
(unnamed)/home/nightlies/herbie/artem-popl-s-eval/src/sandbox.rkt2656
(unnamed)/usr/local/racket/share/pkgs/profile-lib/main.rkt4010
profile-thunk/usr/local/racket/share/pkgs/profile-lib/main.rkt90
(unnamed)/usr/local/racket/collects/racket/engine.rkt4224