mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 10:55:50 +00:00
27 lines
433 B
Java
27 lines
433 B
Java
/**
|
|
* This file was automatically generated from ArrayExpr.cs
|
|
* w/ further modifications by:
|
|
* @author Christoph M. Wintersteiger (cwinter)
|
|
**/
|
|
|
|
package com.microsoft.z3;
|
|
|
|
|
|
/**
|
|
* Array expressions
|
|
**/
|
|
public class ArrayExpr extends Expr
|
|
{
|
|
/**
|
|
* Constructor for ArrayExpr </summary>
|
|
**/
|
|
protected ArrayExpr(Context ctx)
|
|
{
|
|
super(ctx);
|
|
}
|
|
|
|
ArrayExpr(Context ctx, long obj) throws Z3Exception
|
|
{
|
|
super(ctx, obj);
|
|
}
|
|
}
|