Indicates whether the term is of an array sort. @throws Z3Exception on error @return a boolean
()
| 2073 | * @return a boolean |
| 2074 | **/ |
| 2075 | public boolean isFiniteDomain() |
| 2076 | { |
| 2077 | return (Native.isApp(getContext().nCtx(), getNativeObject()) && Native |
| 2078 | .getSortKind(getContext().nCtx(), |
| 2079 | Native.getSort(getContext().nCtx(), getNativeObject())) == Z3_sort_kind.Z3_FINITE_DOMAIN_SORT |
| 2080 | .toInt()); |
| 2081 | } |
| 2082 | |
| 2083 | /** |
| 2084 | * Indicates whether the term is a less than predicate over a finite domain. |
nothing calls this directly
no test coverage detected