Indicates whether the term is an n-ary distinct predicate (every argument is mutually distinct). @throws Z3Exception on error @return a boolean
()
| 355 | * @return a boolean |
| 356 | **/ |
| 357 | public boolean isDistinct() |
| 358 | { |
| 359 | return isApp() && getFuncDecl().getDeclKind() == Z3_decl_kind.Z3_OP_DISTINCT; |
| 360 | } |
| 361 | |
| 362 | /** |
| 363 | * Indicates whether the term is a ternary if-then-else term |
nothing calls this directly
no test coverage detected