Skip to content

Commit 63ad283

Browse files
authored
Add Z3_get_array_arity (#7598)
1 parent 934455a commit 63ad283

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

src/api/api_array.cpp

+13
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,19 @@ extern "C" {
300300
to_sort(t)->get_decl_kind() == ARRAY_SORT;
301301
}
302302

303+
unsigned Z3_API Z3_get_array_arity(Z3_context c, Z3_sort s) {
304+
Z3_TRY;
305+
LOG_Z3_get_array_arity(c, s);
306+
RESET_ERROR_CODE();
307+
sort * a = to_sort(s);
308+
if (Z3_get_sort_kind(c, s) != Z3_ARRAY_SORT) {
309+
SET_ERROR_CODE(Z3_INVALID_ARG, "sort should be an array");
310+
return 0;
311+
}
312+
return get_array_arity(a);
313+
Z3_CATCH_RETURN(0);
314+
}
315+
303316
Z3_sort Z3_API Z3_get_array_sort_domain(Z3_context c, Z3_sort t) {
304317
Z3_TRY;
305318
LOG_Z3_get_array_sort_domain(c, t);

src/api/z3_api.h

+11
Original file line numberDiff line numberDiff line change
@@ -4497,6 +4497,17 @@ extern "C" {
44974497
*/
44984498
bool Z3_API Z3_get_finite_domain_sort_size(Z3_context c, Z3_sort s, uint64_t* r);
44994499

4500+
/**
4501+
\brief Return the arity (number of dimensions) of the given array sort.
4502+
4503+
\pre Z3_get_sort_kind(s) == Z3_ARRAY_SORT
4504+
4505+
\sa Z3_get_array_sort_domain_n
4506+
4507+
def_API('Z3_get_array_arity', UINT, (_in(CONTEXT), _in(SORT)))
4508+
*/
4509+
unsigned Z3_API Z3_get_array_arity(Z3_context c, Z3_sort s);
4510+
45004511
/**
45014512
\brief Return the domain of the given array sort.
45024513
In the case of a multi-dimensional array, this function returns the sort of the first dimension.

0 commit comments

Comments
 (0)