mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 00:05:46 +00:00
more code
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5fc0f56281
commit
e6468726f5
3 changed files with 52 additions and 9 deletions
|
@ -195,6 +195,11 @@ expr * mk_not(ast_manager & m, expr * arg) {
|
|||
return m.mk_not(arg);
|
||||
}
|
||||
|
||||
expr_ref mk_not(expr_ref& e) {
|
||||
return expr_ref(mk_not(e.m(), e), e.m());
|
||||
}
|
||||
|
||||
|
||||
expr_ref push_not(const expr_ref& e) {
|
||||
ast_manager& m = e.get_manager();
|
||||
if (!is_app(e)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue