3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

move sat.smt.proof.check_rup into solver.proof.check_rup #6616

This commit is contained in:
Nikolaj Bjorner 2023-03-01 21:03:27 -08:00
parent 94b79eefea
commit fd97be0e3e
5 changed files with 5 additions and 7 deletions

View file

@ -10,6 +10,7 @@ def_module_params('solver',
('axioms2files', BOOL, False, 'print negated theory axioms to separate files during search'),
('proof.log', SYMBOL, '', 'log clause proof trail into a file'),
('proof.check', BOOL, True, 'check proof logs'),
('proof.check_rup', BOOL, True, 'check proof RUP inference in proof logs'),
('proof.save', BOOL, False, 'save proof log into a proof object that can be extracted using (get-proof)'),
('proof.trim', BOOL, False, 'trim and save proof into a proof object that an be extracted using (get-proof)'),
))