Example #1
0
 public static Z3BoolExpr Ge(this Z3ArithExpr expr1, Z3Context context, Z3ArithExpr expr2)
 {
     Contract.Requires(expr1 != null && expr2 != null);
     return(context.MkGe(expr1, expr2));
 }
Example #2
0
 public static Z3ArithExpr Neg(this Z3ArithExpr expr1, Z3Context context)
 {
     Contract.Assert(expr1 != null);
     return(context.MkUnaryMinus(expr1));
 }