3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

propagate values should not flatten and/or

also, elim_uncstr should only be disabled on recursive functions
This commit is contained in:
Nikolaj Bjorner 2022-11-12 18:03:38 -08:00
parent f4e17ecc65
commit e33e66212c
2 changed files with 2 additions and 1 deletions

View file

@ -47,7 +47,7 @@ def_module_params('sat',
('threads', UINT, 1, 'number of parallel threads to use'),
('dimacs.core', BOOL, False, 'extract core from DIMACS benchmarks'),
('drat.disable', BOOL, False, 'override anything that enables DRAT'),
('smt.proof', SYMBOL, '', 'add SMT proof to file'),
('smt.proof', SYMBOL, '', 'add SMT proof log to file'),
('smt.proof.check', BOOL, False, 'check SMT proof while it is created'),
('smt.proof.check_rup', BOOL, True, 'apply forward RUP proof checking'),
('drat.file', SYMBOL, '', 'file to dump DRAT proofs'),

View file

@ -213,6 +213,7 @@ public:
m_occs(m, true /* track atoms */),
m_params(p) {
updt_params_core(p);
m_r.set_flat_and_or(false);
}
tactic * translate(ast_manager & m) override {