All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cvc5-cvc5-1.2.0.test.regress.cli.regress1.strings.loop005.smt2 Maven / Gradle / Ivy

The newest version!
(set-logic QF_SLIA)
(set-info :status sat)

(declare-fun x () String)
(declare-fun y () String)
(declare-fun z () String)
(declare-fun w () String)

;(assert (= (str.++ x y z) (str.++ x z y)))
;(assert (= (str.++ x w z) (str.++ x z w)))

(assert (= (str.++ y z) (str.++ z y)))
(assert (= (str.++ w z) (str.++ z w)))

(assert (not (= y w)))
(assert (> (str.len z) 0))

(check-sat)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy