mk_zero_ext method

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

\brief Extend the given bit-vector with zeros to the (unsigned) equivalent bit-vector of size \ccode{m+i}, where \c m is the size of the given bit-vector.

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

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

Implementation

Z3_ast mk_zero_ext(
  Z3_context c,
  int i,
  Z3_ast t1,
) {
  return _mk_zero_ext(
    c,
    i,
    t1,
  );
}