Z3
IntExpr.java
Go to the documentation of this file.
1 
18 package com.microsoft.z3;
19 
23 public class IntExpr extends ArithExpr
24 {
28  protected IntExpr(Context ctx) throws Z3Exception
29  {
30  super(ctx);
31  }
32 
33  IntExpr(Context ctx, long obj) throws Z3Exception
34  {
35  super(ctx, obj);
36  }
37 }
IntExpr(Context ctx)
Definition: IntExpr.java:28