Function z3_sys::Z3_algebraic_div

source ·
pub unsafe extern "C" fn Z3_algebraic_div(
    c: Z3_context,
    a: Z3_ast,
    b: Z3_ast
) -> Z3_ast
Expand description

Return the value a / b.

Preconditions:

  • Z3_algebraic_is_value(c, a)
  • Z3_algebraic_is_value(c, b)
  • !Z3_algebraic_is_zero(c, b)

Postconditions:

  • Z3_algebraic_is_value(c, result)

See also: