update_term method

Z3_ast update_term(
  1. Z3_context c,
  2. Z3_ast a,
  3. int num_args,
  4. Pointer<Z3_ast> args,
)

@name Modifiers / /**@{/ /** \brief Update the arguments of term \c a using the arguments \c args. The number of arguments \c num_args should coincide with the number of arguments to \c a. If \c a is a quantifier, then num_args has to be 1.

def_API('Z3_update_term', AST, (_in(CONTEXT), _in(AST), _in(UINT), _in_array(2, AST)))

Implementation

Z3_ast update_term(
  Z3_context c,
  Z3_ast a,
  int num_args,
  ffi.Pointer<Z3_ast> args,
) {
  return _update_term(
    c,
    a,
    num_args,
    args,
  );
}