Indicates whether the term is of an array sort. @throws Z3Exception on error @return a boolean
()
| 617 | * @return a boolean |
| 618 | **/ |
| 619 | public boolean isArray() |
| 620 | { |
| 621 | return (Native.isApp(getContext().nCtx(), getNativeObject()) && Z3_sort_kind |
| 622 | .fromInt(Native.getSortKind(getContext().nCtx(), |
| 623 | Native.getSort(getContext().nCtx(), getNativeObject()))) == Z3_sort_kind.Z3_ARRAY_SORT); |
| 624 | } |
| 625 | |
| 626 | /** |
| 627 | * Indicates whether the term is an array store. |
nothing calls this directly
no test coverage detected