mk_rotate_left method

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

\brief Rotate bits of \c t1 to the left \c i times.

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

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

Implementation

Z3_ast mk_rotate_left(
  Z3_context c,
  int i,
  Z3_ast t1,
) {
  return _mk_rotate_left(
    c,
    i,
    t1,
  );
}