mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 00:05:46 +00:00
bapa
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a27f083177
commit
1123b47fb7
13 changed files with 613 additions and 4 deletions
|
@ -120,7 +120,10 @@ inline app_ref operator|(expr_ref& a, expr* b) { return app_ref(a.m().mk_or(a, b
|
|||
inline app_ref operator|(app_ref& a, expr* b) { return app_ref(a.m().mk_or(a, b), a.m()); }
|
||||
inline app_ref operator|(var_ref& a, expr* b) { return app_ref(a.m().mk_or(a, b), a.m()); }
|
||||
inline app_ref operator|(quantifier_ref& a, expr* b) { return app_ref(a.m().mk_or(a, b), a.m()); }
|
||||
|
||||
app_ref operator+(expr_ref& a, expr* b);
|
||||
app_ref operator+(app_ref& a, expr* b);
|
||||
app_ref operator+(expr_ref& a, int i);
|
||||
app_ref operator+(app_ref& a, int i);
|
||||
|
||||
/**
|
||||
Return (or args[0] ... args[num_args-1]) if num_args >= 2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue