MacOS X10.8でZ34.3.1(マスターブランチから)を使用しています。次の例でセグメンテーション違反が発生します。
(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)
この問題を解決する方法について何かアイデアはありますか?