3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-15 03:25:43 +00:00

change bit-vector AC simplification n to true

This commit is contained in:
Nikolaj Bjorner 2026-07-10 15:00:32 -07:00
parent c3170108e6
commit af0fa8ecf3

View file

@ -7,7 +7,7 @@ def_module_params(module_name='rewriter',
("elim_sign_ext", BOOL, True, "expand sign-ext operator using concat and extract"), ("elim_sign_ext", BOOL, True, "expand sign-ext operator using concat and extract"),
("hi_div0", BOOL, True, "use the 'hardware interpretation' for division by zero (for bit-vector terms)"), ("hi_div0", BOOL, True, "use the 'hardware interpretation' for division by zero (for bit-vector terms)"),
("mul2concat", BOOL, False, "replace multiplication by a power of two into a concatenation"), ("mul2concat", BOOL, False, "replace multiplication by a power of two into a concatenation"),
("bv_sort_ac", BOOL, False, "sort the arguments of all AC operators"), ("bv_sort_ac", BOOL, True, "sort the arguments of all AC operators"),
("bv_extract_prop", BOOL, False, "attempt to partially propagate extraction inwards"), ("bv_extract_prop", BOOL, False, "attempt to partially propagate extraction inwards"),
("bv_not_simpl", BOOL, False, "apply simplifications for bvnot"), ("bv_not_simpl", BOOL, False, "apply simplifications for bvnot"),
("bv_ite2id", BOOL, False, "rewrite ite that can be simplified to identity"), ("bv_ite2id", BOOL, False, "rewrite ite that can be simplified to identity"),