Indicates whether the term is a ternary if-then-else term @throws Z3Exception on error @return a boolean
()
| 365 | * @return a boolean |
| 366 | **/ |
| 367 | public boolean isITE() |
| 368 | { |
| 369 | return isApp() && getFuncDecl().getDeclKind() == Z3_decl_kind.Z3_OP_ITE; |
| 370 | } |
| 371 | |
| 372 | /** |
| 373 | * Indicates whether the term is an n-ary conjunction |
nothing calls this directly
no test coverage detected