algebraic_is_neg method

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

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