3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-11 09:44:43 +00:00

model_evaluator: optionally expand arrays as sequence of stores

commit on behalf of Nikolaj
This commit is contained in:
Arie Gurfinkel 2018-05-19 17:52:56 -07:00
parent 2f369d8d41
commit 7281616084
3 changed files with 26 additions and 18 deletions

View file

@ -4,6 +4,7 @@ def_module_params('model_evaluator',
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'),
('cache', BOOL, True, 'cache intermediate results in the model evaluator'),
('array_equalities', BOOL, True, 'evaluate array equalities')
('array_equalities', BOOL, True, 'evaluate array equalities'),
('array_as_stores', BOOL, True, 'return array as a set of stores'),
))