algebraic_get_poly method

Z3_ast_vector algebraic_get_poly(
  1. Z3_context c,
  2. Z3_ast a
)

\brief Return the coefficients of the defining polynomial.

\pre Z3_algebraic_is_value(c, a)

def_API('Z3_algebraic_get_poly', AST_VECTOR, (_in(CONTEXT), _in(AST)))

Implementation

Z3_ast_vector algebraic_get_poly(
  Z3_context c,
  Z3_ast a,
) {
  return _algebraic_get_poly(
    c,
    a,
  );
}