mirror of
https://github.com/Z3Prover/z3
synced 2025-04-30 20:35:51 +00:00
test sup
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6eae7d71db
commit
7d5a1acb61
4 changed files with 45 additions and 12 deletions
|
@ -375,6 +375,8 @@ namespace dd {
|
|||
inline bddv operator*(rational const& r, bddv const& a) { return a * r; }
|
||||
inline bddv operator+(rational const& r, bddv const& a) { return a + r; }
|
||||
inline bddv operator-(rational const& r, bddv const& a) { return a.rev_sub(r); }
|
||||
inline bdd operator<=(int i, bddv const& a) { return a >= rational(i); }
|
||||
inline bdd operator<=(bddv const& a, int i) { return a <= rational(i); }
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue