Indicates whether the term is a negation @throws Z3Exception on error @return a boolean
()
| 416 | * @return a boolean |
| 417 | **/ |
| 418 | public boolean isNot() |
| 419 | { |
| 420 | return isApp() && getFuncDecl().getDeclKind() == Z3_decl_kind.Z3_OP_NOT; |
| 421 | } |
| 422 | |
| 423 | /** |
| 424 | * Indicates whether the term is an implication |
nothing calls this directly
no test coverage detected