mirror of
https://github.com/Z3Prover/z3
synced 2025-05-09 16:55:47 +00:00
9 lines
560 B
Text
9 lines
560 B
Text
def_module_params('model_evaluator',
|
|
export=True,
|
|
params=(max_memory_param(),
|
|
max_steps_param(),
|
|
('completion', BOOL, False, 'assigns an interptetation to symbols that do not have one in the current model, when evaluating expressions in the current model'),
|
|
('array_equalities', BOOL, True, 'evaluate array equalities'),
|
|
('array_as_stores', BOOL, True, 'return array as a set of stores'),
|
|
))
|
|
|