get_numeral_binary_string method

Z3_string get_numeral_binary_string(
  1. Z3_context c,
  2. Z3_ast a
)

\brief Return numeral value, as a binary string of a numeric constant term

\pre Z3_get_ast_kind(c, a) == Z3_NUMERAL_AST \pre a represents a non-negative integer

def_API('Z3_get_numeral_binary_string', STRING, (_in(CONTEXT), _in(AST)))

Implementation

Z3_string get_numeral_binary_string(
  Z3_context c,
  Z3_ast a,
) {
  return _get_numeral_binary_string(
    c,
    a,
  );
}