(set-info :smt-lib-version 2.6)
(set-logic QF_NRA)
(set-info :category |Crafted from GATeL POs|)
(set-info :status unsat)

(declare-fun x () Real)
(declare-fun y () Real)

(define-fun s2r () Real
  (+ (* (+ x y) (+ x y))
     (* 2.0 x x)
     (* 2.0 y y)))

(assert (not
        (=> (and (<= (- 2.0) x 2.0) (<= (- 2.0) y 2.0)) (<= 0.0 s2r 32.0))
))
(check-sat)