mk_seq_to_re method
\brief Create a regular expression that accepts the sequence \c seq.
def_API('Z3_mk_seq_to_re', AST ,(_in(CONTEXT), _in(AST)))
Implementation
Z3_ast mk_seq_to_re(
Z3_context c,
Z3_ast seq,
) {
return _mk_seq_to_re(
c,
seq,
);
}