Indicates whether the term is an n-ary conjunction @throws Z3Exception on error @return a boolean
()
| 375 | * @return a boolean |
| 376 | **/ |
| 377 | public boolean isAnd() |
| 378 | { |
| 379 | return isApp() && getFuncDecl().getDeclKind() == Z3_decl_kind.Z3_OP_AND; |
| 380 | } |
| 381 | |
| 382 | /** |
| 383 | * Indicates whether the term is an n-ary disjunction |
nothing calls this directly
no test coverage detected