mk_mul method
\brief Create an AST node representing \ccode{args0
* ... * argsnum_args-1
}.
The array \c args must have \c num_args elements. All arguments must have int or real sort.
\remark Z3 has limited support for non-linear arithmetic. \remark The number of arguments must be greater than zero.
def_API('Z3_mk_mul', AST, (_in(CONTEXT), _in(UINT), _in_array(1, AST)))
Implementation
Z3_ast mk_mul(
Z3_context c,
int num_args,
ffi.Pointer<Z3_ast> args,
) {
return _mk_mul(
c,
num_args,
args,
);
}