3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-08 00:05:46 +00:00

simplify Boolean resolve

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-09-22 05:37:46 -07:00
parent ad267ce294
commit 2d78bc9282
3 changed files with 15 additions and 23 deletions

View file

@ -486,7 +486,7 @@ namespace polysat {
// NOTE: boolean resolution should work normally even in bailout mode.
clause other = *m_bvars.reason(var);
LOG_H3("resolve_bool: " << lit << " " << other);
m_conflict.resolve(m_constraints, var, other);
m_conflict.resolve(m_constraints, lit, other);
}
void solver::report_unsat() {