예제 #1
0
 public static Z3ArithExpr Div(this Z3ArithExpr expr1, Z3Context context, Z3ArithExpr expr2)
 {
     Contract.Requires(expr1 != null && expr2 != null);
     return(context.MkDiv(expr1, expr2));
 }