algebraic_get_poly method
\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,
);
}