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