3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-18 09:12:16 +00:00

Correctly report unsupported features in bvarray2uf_rewriter. Fixes #4046 and #4047.

This commit is contained in:
Christoph M. Wintersteiger 2020-07-15 16:16:29 +00:00
parent 7dd28708a1
commit c321fb7726
No known key found for this signature in database
GPG key ID: BCF6360F86294467
2 changed files with 11 additions and 26 deletions

View file

@ -54,6 +54,8 @@ class bvarray2uf_tactic : public tactic {
tactic_report report("bvarray2uf", *g);
result.reset();
fail_if_unsat_core_generation("bvarray2uf", g);
// bvarray2uf_rewriter does not support proofs (yet).
fail_if_proof_generation("bvarray2uf", g);
bool produce_models = g->models_enabled();
bool produce_proofs = g->proofs_enabled();