is_algebraic_number method

bool is_algebraic_number(
  1. Z3_context c,
  2. Z3_ast a
)

\brief Return \c true if the given AST is a real algebraic number.

def_API('Z3_is_algebraic_number', BOOL, (_in(CONTEXT), _in(AST)))

Implementation

bool is_algebraic_number(
  Z3_context c,
  Z3_ast a,
) {
  return _is_algebraic_number(
    c,
    a,
  );
}