algebraic_div method

Z3_ast algebraic_div(
  1. Z3_context c,
  2. Z3_ast a,
  3. Z3_ast b
)

\brief Return the value a / b.

\pre Z3_algebraic_is_value(c, a) \pre Z3_algebraic_is_value(c, b) \pre !Z3_algebraic_is_zero(c, b) \post Z3_algebraic_is_value(c, result)

def_API('Z3_algebraic_div', AST, (_in(CONTEXT), _in(AST), _in(AST)))

Implementation

Z3_ast algebraic_div(
  Z3_context c,
  Z3_ast a,
  Z3_ast b,
) {
  return _algebraic_div(
    c,
    a,
    b,
  );
}