I work with Z3 4.3.1 (from master branch) under MacOS X 10.8. I get a segmentation fault on following example:
(declare-const a Int)
(declare-const b Int)
(assert
(exists ((k Int))
(and
(= (- (* 2 k) a) 0)
(= (- (* 2 k) b) 0)
)
)
)
(check-sat-using qe)
Any idea, on how to fix this problem ?