mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 06:15:46 +00:00
add tc and trc functionals for binary relations
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ae982c5225
commit
182039eb44
3 changed files with 30 additions and 8 deletions
|
@ -3661,16 +3661,24 @@ extern "C" {
|
|||
/**
|
||||
\brief create transitive closure of binary relation.
|
||||
|
||||
\pre f is a binary relation, such that the two arguments have the same sorts.
|
||||
|
||||
The resulting relation f+ represents the transitive closure of f.
|
||||
|
||||
def_API('Z3_mk_transitive_closure', FUNC_DECL ,(_in(CONTEXT), _in(FUNC_DECL)))
|
||||
*/
|
||||
Z3_func_decl Z3_API Z3_mk_transitive_closure(Z3_context c,Z3_func_decl f);
|
||||
Z3_func_decl Z3_API Z3_mk_transitive_closure(Z3_context c, Z3_func_decl f);
|
||||
|
||||
/**
|
||||
\brief create transitive reflexive closure of binary relation.
|
||||
|
||||
\pre f is a binary relation, such that the two arguments have the same sorts.
|
||||
|
||||
The resulting relation f* represents the transitive-reflexive closure of f.
|
||||
|
||||
def_API('Z3_mk_transitive_reflexive_closure', FUNC_DECL ,(_in(CONTEXT), _in(FUNC_DECL)))
|
||||
*/
|
||||
Z3_func_decl Z3_API Z3_mk_transitive_reflexive_closure(Z3_context c,Z3_func_decl f);
|
||||
Z3_func_decl Z3_API Z3_mk_transitive_reflexive_closure(Z3_context c, Z3_func_decl f);
|
||||
|
||||
/*@}*/
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue