algebraic_is_neg method
\brief Return \c true if \c a is negative, and \c false otherwise.
\pre Z3_algebraic_is_value(c, a)
def_API('Z3_algebraic_is_neg', BOOL, (_in(CONTEXT), _in(AST)))
Implementation
bool algebraic_is_neg(
Z3_context c,
Z3_ast a,
) {
return _algebraic_is_neg(
c,
a,
);
}