Use the --timeout flag to change the timeout.
\tan \left(x + \varepsilon\right) - \tan x
double code(double x, double eps) {
return (tan((x + eps)) - tan(x));
}
herbie shell --seed 2020078
(FPCore (x eps)
:name "2tan (problem 3.3.2)"
:precision binary64
:herbie-target
(/ (sin eps) (* (cos x) (cos (+ x eps))))
(- (tan (+ x eps)) (tan x)))