mirror of
https://github.com/Z3Prover/z3
synced 2025-04-30 20:35:51 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4fad0385de
commit
19099244c4
5 changed files with 49 additions and 14 deletions
|
@ -338,6 +338,9 @@ namespace dd {
|
|||
bdd slt(bddv const& other) const { return m->mk_slt(*this, other); }
|
||||
bdd sgt(bddv const& other) const { return m->mk_sgt(*this, other); }
|
||||
|
||||
bdd all0() const;
|
||||
bdd all1() const;
|
||||
|
||||
bdd operator==(bddv const& other) const { return m->mk_eq(*this, other); }
|
||||
bdd operator==(rational const& other) const { return m->mk_eq(*this, other); }
|
||||
bdd operator!=(bddv const& other) const { return !m->mk_eq(*this, other); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue