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

Method isEq

src/api/java/Expr.java:346–349  ·  view source on GitHub ↗

Indicates whether the term is an equality predicate. @throws Z3Exception on error @return a boolean

()

Source from the content-addressed store, hash-verified

344 * @return a boolean
345 **/
346 public boolean isEq()
347 {
348 return isApp() && getFuncDecl().getDeclKind() == Z3_decl_kind.Z3_OP_EQ;
349 }
350
351 /**
352 * Indicates whether the term is an n-ary distinct predicate (every argument

Callers

nothing calls this directly

Calls 3

getFuncDeclMethod · 0.95
getDeclKindMethod · 0.80
isAppMethod · 0.65

Tested by

no test coverage detected