mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
disable propagation in proof mode as it produces ill-formed proof objects. Fixes #5063
This commit is contained in:
parent
bef6f1a729
commit
8c66691e6d
2 changed files with 5 additions and 0 deletions
|
@ -525,6 +525,8 @@ void asserted_formulas::commit(unsigned new_qhead) {
|
|||
}
|
||||
|
||||
void asserted_formulas::propagate_values() {
|
||||
if (m.proofs_enabled())
|
||||
return;
|
||||
flush_cache();
|
||||
|
||||
unsigned num_prop = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue