Use the --timeout flag to change the timeout.
--timeout
\frac{1}{\sqrt{x}} - \frac{1}{\sqrt{x + 1}}
(FPCore (x) :precision binary64 (- (/ 1.0 (sqrt x)) (/ 1.0 (sqrt (+ x 1.0)))))
double code(double x) { return (1.0 / sqrt(x)) - (1.0 / sqrt(x + 1.0)); }