algebraic_is_pos method

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

\brief Return \c true if \c a is positive, and \c false otherwise.

\pre Z3_algebraic_is_value(c, a)

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

Implementation

bool algebraic_is_pos(
  Z3_context c,
  Z3_ast a,
) {
  return _algebraic_is_pos(
    c,
    a,
  );
}