mk_repeat method

Z3_ast mk_repeat(
  1. Z3_context c,
  2. int i,
  3. Z3_ast t1
)

\brief Repeat the given bit-vector up length \ccode{i}.

The node \c t1 must have a bit-vector sort.

def_API('Z3_mk_repeat', AST, (_in(CONTEXT), _in(UINT), _in(AST)))

Implementation

Z3_ast mk_repeat(
  Z3_context c,
  int i,
  Z3_ast t1,
) {
  return _mk_repeat(
    c,
    i,
    t1,
  );
}