Function z3_sys::Z3_mk_sub

source ·
pub unsafe extern "C" fn Z3_mk_sub(
    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: The number of arguments must be greater than zero.