mk_iff method
\brief Create an AST node representing \ccode{t1 iff t2}.
The nodes \c t1 and \c t2 must have Boolean sort.
def_API('Z3_mk_iff', AST, (_in(CONTEXT), _in(AST), _in(AST)))
Implementation
Z3_ast mk_iff(
Z3_context c,
Z3_ast t1,
Z3_ast t2,
) {
return _mk_iff(
c,
t1,
t2,
);
}