Function z3_sys::Z3_mk_mul[][src]

pub unsafe extern "C" fn Z3_mk_mul(
    c: Z3_context,
    num_args: c_uint,
    args: *const Z3_ast
) -> Z3_ast
Expand description

Create an AST node representing args[0] * ... * args[num_args-1].

The array args must have num_args elements. All arguments must have int or real sort.

NOTE: Z3 has limited support for non-linear arithmetic. NOTE: The number of arguments must be greater than zero.