mk_seq_to_re method

Z3_ast mk_seq_to_re(
  1. Z3_context c,
  2. Z3_ast seq
)

\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,
  );
}