You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(synth-inv inv_fun ((a (Array Int Int)) (i Int) (s Int)))
(define-fun pre_fun ((a (Array Int Int)) (i Int) (s Int)) Bool
(and (= i 0) (> s 1)))
(define-fun trans_fun ((a (Array Int Int)) (i Int) (s Int) (a! (Array Int Int)) (i! Int) (s! Int)) Bool
(and (< i (* 2 s)) (= i! (+ i! 1)) (= s! s) (ite (< i s) (= a! (store a i (* (- i 1) (+ i 1)))) (= a! (store a (- i s) (- (select a (- i s)) (* (- i s) (- i s))))))))
(define-fun post_fun ((a (Array Int Int)) (i Int) (s Int)) Bool