3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

fix #5929 - add parameter bv_le2extract to allow disabling the disassembly to extract

This commit is contained in:
Nikolaj Bjorner 2022-03-27 18:23:41 -10:00
parent cb1e16fd76
commit 431c3af409
3 changed files with 5 additions and 2 deletions

View file

@ -11,5 +11,6 @@ def_module_params(module_name='rewriter',
("bv_extract_prop", BOOL, False, "attempt to partially propagate extraction inwards"),
("bv_not_simpl", BOOL, False, "apply simplifications for bvnot"),
("bv_ite2id", BOOL, False, "rewrite ite that can be simplified to identity"),
("bv_le_extra", BOOL, False, "additional bu_(u/s)le simplifications")
("bv_le_extra", BOOL, False, "additional bu_(u/s)le simplifications"),
("bv_le2extract", BOOL, True, "disassemble bvule to extract")
))