mirror of
https://github.com/Z3Prover/z3
synced 2025-12-15 16:58:58 +00:00
clause_builder: rename push to insert
This commit is contained in:
parent
dbe814d568
commit
f12ae0af12
7 changed files with 21 additions and 36 deletions
|
|
@ -132,9 +132,9 @@ namespace polysat {
|
|||
SASSERT(bound * p.val() > max);
|
||||
SASSERT((bound - 1) * p.val() <= max);
|
||||
clause_builder cb(s);
|
||||
cb.push(~sc);
|
||||
cb.push(~premise);
|
||||
cb.push(conseq);
|
||||
cb.insert(~sc);
|
||||
cb.insert(~premise);
|
||||
cb.insert(conseq);
|
||||
clause_ref just = cb.build();
|
||||
SASSERT(just);
|
||||
s.add_clause(*just);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue