mk_array_ext method

Z3_ast mk_array_ext(
  1. Z3_context c,
  2. Z3_ast arg1,
  3. Z3_ast arg2
)

\brief Create array extensionality index given two arrays with the same sort. The meaning is given by the axiom: (=> (= (select A (array-ext A B)) (select B (array-ext A B))) (= A B))

def_API('Z3_mk_array_ext', AST, (_in(CONTEXT), _in(AST), _in(AST)))

Implementation

Z3_ast mk_array_ext(
  Z3_context c,
  Z3_ast arg1,
  Z3_ast arg2,
) {
  return _mk_array_ext(
    c,
    arg1,
    arg2,
  );
}