3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00

remove trc from C++ and python

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-04-17 11:10:57 -07:00
parent 86b98e3477
commit aafb16e8ed
2 changed files with 0 additions and 10 deletions

View file

@ -10403,9 +10403,3 @@ def TransitiveClosure(f):
"""
return FuncDeclRef(Z3_mk_transitive_closure(f.ctx_ref(), f.ast), f.ctx)
def TransitiveReflexiveClosure(f):
"""Given a binary relation R, such that the two arguments have the same sort
create the transitive reflexive closure relation R*.
The transitive reflexive closure R* is a new relation.
"""
return FuncDeclRef(Z3_mk_transitive_reflexive_closure(f.ctx_ref(), f.ast), f.ctx)