mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 05:18:44 +00:00
11 lines
719 B
Plaintext
11 lines
719 B
Plaintext
def_module_params('model',
|
|
export=True,
|
|
params=(('partial', BOOL, False, 'enable/disable partial function interpretations'),
|
|
('v1', BOOL, False, 'use Z3 version 1.x pretty printer'),
|
|
('v2', BOOL, False, 'use Z3 version 2.x (x <= 16) pretty printer'),
|
|
('compact', BOOL, True, 'try to compact function graph (i.e., function interpretations that are lookup tables)'),
|
|
('inline_def', BOOL, False, 'inline local function definitions ignoring possible expansion'),
|
|
('completion', BOOL, False, 'enable/disable model completion'),
|
|
))
|
|
|