Indicates whether the term is an arithmetic numeral. @throws Z3Exception on error @return a boolean
()
| 456 | * @return a boolean |
| 457 | **/ |
| 458 | public boolean isArithmeticNumeral() |
| 459 | { |
| 460 | return isApp() && getFuncDecl().getDeclKind() == Z3_decl_kind.Z3_OP_ANUM; |
| 461 | } |
| 462 | |
| 463 | /** |
| 464 | * Indicates whether the term is a less-than-or-equal |
nothing calls this directly
no test coverage detected