Z3
ArrayExpr.java
Go to the documentation of this file.
1
18package com.microsoft.z3;
19
20
24public class ArrayExpr<D extends Sort, R extends Sort> extends Expr<ArraySort<D, R>>
25{
29 ArrayExpr(Context ctx, long obj)
30 {
31 super(ctx, obj);
32 }
33}