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

Method isOr

src/api/java/Expr.java:387–390  ·  view source on GitHub ↗

Indicates whether the term is an n-ary disjunction @throws Z3Exception on error @return a boolean

()

Source from the content-addressed store, hash-verified

385 * @return a boolean
386 **/
387 public boolean isOr()
388 {
389 return isApp() && getFuncDecl().getDeclKind() == Z3_decl_kind.Z3_OP_OR;
390 }
391
392 /**
393 * Indicates whether the term is an if-and-only-if (Boolean equivalence,

Callers

nothing calls this directly

Calls 3

getFuncDeclMethod · 0.95
getDeclKindMethod · 0.80
isAppMethod · 0.65

Tested by

no test coverage detected