mk_sbv_to_str method

Z3_ast mk_sbv_to_str(
  1. Z3_context c,
  2. Z3_ast s
)

\brief Signed bit-vector to string conversion.

def_API('Z3_mk_sbv_to_str', AST ,(_in(CONTEXT), _in(AST)))

Implementation

Z3_ast mk_sbv_to_str(
  Z3_context c,
  Z3_ast s,
) {
  return _mk_sbv_to_str(
    c,
    s,
  );
}