Indicates whether the term represents a constant. @throws Z3Exception on error @return a boolean
()
| 272 | * @return a boolean |
| 273 | **/ |
| 274 | public boolean isConst() |
| 275 | { |
| 276 | return isApp() && getNumArgs() == 0 && getFuncDecl().getDomainSize() == 0; |
| 277 | } |
| 278 | |
| 279 | /** |
| 280 | * Indicates whether the term is an integer numeral. |
nothing calls this directly
no test coverage detected