3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-04-05 03:06:41 -07:00
parent dfd327f287
commit f1a2e875b5
4 changed files with 19 additions and 3 deletions

View file

@ -10379,3 +10379,10 @@ def Range(lo, hi, ctx = None):
# Special Relations
def PartialOrder(n, s):
ctx = s.ctx
return FuncDeclRef(Z3_mk_partial_order(ctx, n, s.ast), ctx)
def TreeOrder(n, s):
ctx = s.ctx
return FuncDeclRef(Z3_mk_tree_order(ctx, n, s.ast), ctx)