algebraic_is_value method

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

@name Algebraic Numbers / /**@{/ /** \brief Return \c true if \c a can be used as value in the Z3 real algebraic number package.

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

Implementation

bool algebraic_is_value(
  Z3_context c,
  Z3_ast a,
) {
  return _algebraic_is_value(
    c,
    a,
  );
}