; seed : 2018195

; flags :
;   rules      = (arithmetic polynomials fractions exponents trigonometry hyperbolic complex special bools branches)
;   setup      = (simplify)
;   fn         = (cbrt)
;   generate   = (rr taylor simplify)
;   reduce     = (regimes taylor simplify avg-error binary-search branch-expressions)
;   precision  = (double fallback)

; crashed
(FPCore (f n)
  :name "subtraction fraction"
  (/ (- (+ f n)) (- f n)))

; crashed
(FPCore (x)
  :name "sqrt times"
  (* (sqrt (- x 1)) (sqrt x)))

