ostrich icon indicating copy to clipboard operation
ostrich copied to clipboard

Support for unsat core generation

Open SimpleXiaohu opened this issue 3 years ago • 0 comments

For example below, ostrich can not generate right unsat core:

(set-option :produce-unsat-cores true)
(declare-const x String)
(declare-const i Int)
(assert (= x "hh"))
(assert (= i (str.len x)))
(assert (= i 1))

(check-sat)
(get-unsat-core)

SimpleXiaohu avatar Jun 08 '22 02:06 SimpleXiaohu