3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00
This commit is contained in:
Christoph M. Wintersteiger 2017-09-17 18:33:40 +01:00
parent b9494fe3c0
commit c275d4ddca

View file

@ -2070,7 +2070,7 @@ public class Context implements AutoCloseable {
*/
public ReExpr mkComplement(ReExpr re)
{
checkContextMatchb(re);
checkContextMatch(re);
return (ReExpr) Expr.create(this, Native.mkReComplement(nCtx(), re.getNativeObject()));
}