3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-04-28 23:03:36 +00:00

another unsoundness bug

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2023-03-31 16:13:46 -07:00
parent 5e0db02753
commit 63ebd4fcba
4 changed files with 20 additions and 2 deletions

View file

@ -282,6 +282,7 @@ namespace polysat {
bool repropagate(sat::literal lit, clause& cl);
void propagate_clause(clause& cl);
void set_conflict(dependency dep, signed_constraint c) { m_conflict.init(dep, c); }
void set_conflict_at_base_level(dependency dep) { m_conflict.init_at_base_level(dep); }
void set_conflict(signed_constraint c) { m_conflict.init(c); }
void set_conflict(clause& cl) { m_conflict.init(cl); }