mirror of
https://github.com/Z3Prover/z3
synced 2025-06-24 06:43:40 +00:00
move parameters from ast/rewriter to params
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
507b4c7848
commit
11c90cc142
15 changed files with 15 additions and 16 deletions
8
src/params/poly_rewriter_params.pyg
Normal file
8
src/params/poly_rewriter_params.pyg
Normal file
|
@ -0,0 +1,8 @@
|
|||
def_module_params(module_name='rewriter',
|
||||
class_name='poly_rewriter_params',
|
||||
export=True,
|
||||
params=(("som", BOOL, False, "put polynomials in sum-of-monomials form"),
|
||||
("som_blowup", UINT, 10, "maximum increase of monomials generated when putting a polynomial in sum-of-monomials normal form"),
|
||||
("hoist_mul", BOOL, False, "hoist multiplication over summation to minimize number of multiplications"),
|
||||
("hoist_ite", BOOL, False, "hoist shared summands under ite expressions"),
|
||||
("flat", BOOL, True, "create nary applications for and,or,+,*,bvadd,bvmul,bvand,bvor,bvxor")))
|
Loading…
Add table
Add a link
Reference in a new issue