mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
Added option to limit the distance of unsat core extension through patterns.
This commit is contained in:
parent
1bfd09e16b
commit
adf8072eaa
2 changed files with 10 additions and 4 deletions
|
@ -63,5 +63,6 @@ def_module_params(module_name='smt',
|
|||
('dack.threshold', UINT, 10, ' number of times the congruence rule must be used before Leibniz\'s axiom is expanded'),
|
||||
('core.validate', BOOL, False, 'validate unsat core produced by SMT context'),
|
||||
('core.minimize', BOOL, False, 'minimize unsat core produced by SMT context'),
|
||||
('core.extend_patterns', BOOL, False, 'extend unsat core with literals that trigger (potential) quantifier instances')
|
||||
('core.extend_patterns', BOOL, False, 'extend unsat core with literals that trigger (potential) quantifier instances'),
|
||||
('core.extend_patterns.max_distance', UINT, UINT_MAX, 'limits the distance of a pattern-extended unsat core')
|
||||
))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue