packages feed

toysolver-0.4.0: samples/smt/assumptions.smt2

(set-option :produce-unsat-assumptions true)
(get-option :produce-unsat-assumptions)
(set-logic QF_UF)
(declare-fun a () Bool)
(declare-fun b () Bool)
(assert (or a b))
(check-sat-assuming ((not a) (not b)))
(get-unsat-assumptions)