z3 icon indicating copy to clipboard operation
z3 copied to clipboard

Issue with tactic

Open merlinsun opened this issue 1 year ago • 1 comments

Hi, For this following instance, z3 https://github.com/Z3Prover/z3/commit/cafe3acff1d4aedf2b08a4700574fcb41b4e4355 incorrectly gives unsat with (check-sat-using qe).

$ cat small.smt2 
(declare-fun a () Real)
(assert (and (forall ((v Real)) (= (= a v) (= v 0)))))
(check-sat-using qe)
(check-sat)
$ z3 small.smt2 
unsat
sat

merlinsun avatar Oct 16 '23 01:10 merlinsun

Note: this is not related to qel

NikolajBjorner avatar Nov 14 '23 15:11 NikolajBjorner