Z3
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
IntExpr.java
Go to the documentation of this file.
1 
18 package com.microsoft.z3;
19 
23 public class IntExpr extends ArithExpr
24 {
29  IntExpr(Context ctx, long obj)
30  {
31  super(ctx, obj);
32  }
33 }