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

Method mkGe

src/api/java/Context.java:1109–1115  ·  view source on GitHub ↗

Create an expression representing t1 >= t2

(Expr<? extends ArithSort> t1, Expr<? extends ArithSort> t2)

Source from the content-addressed store, hash-verified

1107 * Create an expression representing {@code t1 &gt;= t2}
1108 **/
1109 public BoolExpr mkGe(Expr<? extends ArithSort> t1, Expr<? extends ArithSort> t2)
1110 {
1111 checkContextMatch(t1);
1112 checkContextMatch(t2);
1113 return new BoolExpr(this, Native.mkGe(nCtx(), t1.getNativeObject(),
1114 t2.getNativeObject()));
1115 }
1116
1117 /**
1118 * Coerce an integer to a real.

Callers 4

pushPopExample1Method · 0.80
optimizeExampleMethod · 0.80
pushPopExample1Method · 0.80
optimizeExampleMethod · 0.80

Calls 3

checkContextMatchMethod · 0.95
nCtxMethod · 0.95
getNativeObjectMethod · 0.80

Tested by

no test coverage detected