mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 09:55:19 +00:00
14 lines
1.1 KiB
Plaintext
14 lines
1.1 KiB
Plaintext
def_module_params(module_name='rewriter',
|
|
class_name='bv_rewriter_params',
|
|
export=True,
|
|
params=(("udiv2mul", BOOL, False, "convert constant udiv to mul"),
|
|
("split_concat_eq", BOOL, False, "split equalities of the form (= (concat t1 t2) t3)"),
|
|
("bit2bool", BOOL, True, "try to convert bit-vector terms of size 1 into Boolean terms"),
|
|
("blast_eq_value", BOOL, False, "blast (some) Bit-vector equalities into bits"),
|
|
("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)"),
|
|
("mul2concat", BOOL, False, "replace multiplication by a power of two into a concatenation"),
|
|
("bvnot2arith", BOOL, False, "replace (bvnot x) with (bvsub -1 x)"),
|
|
("bv_sort_ac", BOOL, False, "sort the arguments of all AC operators")
|
|
))
|