I use Z3 as a back-end solver on bounded program verification. I feed same formulas to Z3 on different operating systems, Windows 7 X64 and SuSe 10.3 X64, both Z3 are version 3.2.
Their input is: run.z3, it contains nested quantifiers.
Without any explicit options enabled(the default mode), Z3 works very well on Windows, however, it gives me "Segmentation fault" on Linux:
../solvers/z3/bin/z3: line 11: 27951 Segmentation fault
Then I add the only option
(set-option :PULL_NESTED_QUANTIFIERS true)
to the formulas, and re-run it, this time it works on Linux, and on Windows it still works and solves faster. That option solves my problem on Linux.
Does Z3 of version 3.2 on Windows and Linux provide different features? It that's true, what else differences are? Thanks in advance!