MCPcopy Create free account
hub / github.com/Z3Prover/z3 / isIff

Method isIff

src/api/java/Expr.java:398–401  ·  view source on GitHub ↗

Indicates whether the term is an if-and-only-if (Boolean equivalence, binary) @throws Z3Exception on error @return a boolean

()

Source from the content-addressed store, hash-verified

396 * @return a boolean
397 **/
398 public boolean isIff()
399 {
400 return isApp() && getFuncDecl().getDeclKind() == Z3_decl_kind.Z3_OP_IFF;
401 }
402
403 /**
404 * Indicates whether the term is an exclusive or

Callers

nothing calls this directly

Calls 3

getFuncDeclMethod · 0.95
getDeclKindMethod · 0.80
isAppMethod · 0.65

Tested by

no test coverage detected