Indicates whether the term is of an array sort. @throws Z3Exception on error @return a boolean
()
| 1892 | * @return a boolean |
| 1893 | **/ |
| 1894 | public boolean isRelation() |
| 1895 | { |
| 1896 | return (Native.isApp(getContext().nCtx(), getNativeObject()) && Native |
| 1897 | .getSortKind(getContext().nCtx(), |
| 1898 | Native.getSort(getContext().nCtx(), getNativeObject())) == Z3_sort_kind.Z3_RELATION_SORT |
| 1899 | .toInt()); |
| 1900 | } |
| 1901 | |
| 1902 | /** |
| 1903 | * Indicates whether the term is an relation store |
nothing calls this directly
no test coverage detected