mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 06:15:46 +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
|
@ -44,12 +44,8 @@ namespace polysat {
|
|||
clause_ref build();
|
||||
|
||||
/// Insert constraints into the clause.
|
||||
void push(sat::literal lit);
|
||||
void push(signed_constraint c);
|
||||
void push(inequality const& i) { push(i.as_signed_constraint()); }
|
||||
// TODO: remove push
|
||||
void insert(sat::literal lit) { push(lit); }
|
||||
void insert(signed_constraint c) { push(c); }
|
||||
void insert(sat::literal lit);
|
||||
void insert(signed_constraint c);
|
||||
void insert(inequality const& i) { insert(i.as_signed_constraint()); }
|
||||
|
||||
/// Inserting constraints into the clause.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue