mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 11:37:54 +00:00
We need more clause names
This commit is contained in:
parent
bdf20f513b
commit
5678c1c592
5 changed files with 42 additions and 26 deletions
|
@ -1121,6 +1121,11 @@ namespace polysat {
|
|||
}
|
||||
}
|
||||
|
||||
void solver::add_clause(clause_ref clause) {
|
||||
VERIFY(clause);
|
||||
add_clause(*clause);
|
||||
}
|
||||
|
||||
// Add clause to solver
|
||||
void solver::add_clause(clause& clause) {
|
||||
LOG((clause.is_redundant() ? "Lemma: ": "Aux: ") << clause);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue