mirror of
https://github.com/Z3Prover/z3
synced 2025-11-25 23:19:32 +00:00
* Reworked phantom reference handling. - Replaced IDecRefQueue with a new Z3ReferenceQueue class - Z3ReferenceQueue manages custom subclasses of phantom references in a doubly-linked list - Replaced all subclasses of IDecRefQueue with subclasses of Z3ReferenceQueue.Reference. These custom reference classes are embedded in the class they reference count. - Context now owns a single Z3ReferenceQueue for all types of references. * Made Statistics.Entry a static subclass * Made Context.close idempotent (as recommended) * Update CMakeLists.txt for building the Java API. * Updated CMakeLists.txt again. * Use correct SuppressWarning annotation to silence the compiler * Formatting
258 lines
No EOL
6.4 KiB
Java
258 lines
No EOL
6.4 KiB
Java
/**
|
|
Copyright (c) 2012-2014 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ASTVector.java
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
@author Christoph Wintersteiger (cwinter) 2012-03-15
|
|
|
|
Notes:
|
|
|
|
**/
|
|
|
|
package com.microsoft.z3;
|
|
|
|
import java.lang.ref.ReferenceQueue;
|
|
|
|
/**
|
|
* Vectors of ASTs.
|
|
**/
|
|
public class ASTVector extends Z3Object {
|
|
/**
|
|
* The size of the vector
|
|
**/
|
|
public int size()
|
|
{
|
|
return Native.astVectorSize(getContext().nCtx(), getNativeObject());
|
|
}
|
|
|
|
/**
|
|
* Retrieves the i-th object in the vector.
|
|
* Remarks: May throw an {@code IndexOutOfBoundsException} when
|
|
* {@code i} is out of range.
|
|
* @param i Index
|
|
*
|
|
* @return An AST
|
|
* @throws Z3Exception
|
|
**/
|
|
public AST get(int i)
|
|
{
|
|
return new AST(getContext(), Native.astVectorGet(getContext().nCtx(),
|
|
getNativeObject(), i));
|
|
}
|
|
|
|
public void set(int i, AST value)
|
|
{
|
|
|
|
Native.astVectorSet(getContext().nCtx(), getNativeObject(), i,
|
|
value.getNativeObject());
|
|
}
|
|
|
|
/**
|
|
* Resize the vector to {@code newSize}.
|
|
* @param newSize The new size of the vector.
|
|
**/
|
|
public void resize(int newSize)
|
|
{
|
|
Native.astVectorResize(getContext().nCtx(), getNativeObject(), newSize);
|
|
}
|
|
|
|
/**
|
|
* Add the AST {@code a} to the back of the vector. The size is
|
|
* increased by 1.
|
|
* @param a An AST
|
|
**/
|
|
public void push(AST a)
|
|
{
|
|
Native.astVectorPush(getContext().nCtx(), getNativeObject(), a.getNativeObject());
|
|
}
|
|
|
|
/**
|
|
* Translates all ASTs in the vector to {@code ctx}.
|
|
* @param ctx A context
|
|
*
|
|
* @return A new ASTVector
|
|
* @throws Z3Exception
|
|
**/
|
|
public ASTVector translate(Context ctx)
|
|
{
|
|
return new ASTVector(getContext(), Native.astVectorTranslate(getContext()
|
|
.nCtx(), getNativeObject(), ctx.nCtx()));
|
|
}
|
|
|
|
/**
|
|
* Retrieves a string representation of the vector.
|
|
**/
|
|
@Override
|
|
public String toString() {
|
|
return Native.astVectorToString(getContext().nCtx(), getNativeObject());
|
|
}
|
|
|
|
public ASTVector(Context ctx, long obj)
|
|
{
|
|
super(ctx, obj);
|
|
}
|
|
|
|
public ASTVector(Context ctx)
|
|
{
|
|
super(ctx, Native.mkAstVector(ctx.nCtx()));
|
|
}
|
|
|
|
/**
|
|
* Translates the AST vector into an AST[]
|
|
* */
|
|
public AST[] ToArray()
|
|
{
|
|
int n = size();
|
|
AST[] res = new AST[n];
|
|
for (int i = 0; i < n; i++)
|
|
res[i] = AST.create(getContext(), get(i).getNativeObject());
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* Translates the AST vector into an Expr[]
|
|
* */
|
|
public Expr<?>[] ToExprArray() {
|
|
int n = size();
|
|
Expr<?>[] res = new Expr[n];
|
|
for (int i = 0; i < n; i++)
|
|
res[i] = Expr.create(getContext(), get(i).getNativeObject());
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* Translates the AST vector into an BoolExpr[]
|
|
* */
|
|
public BoolExpr[] ToBoolExprArray()
|
|
{
|
|
int n = size();
|
|
BoolExpr[] res = new BoolExpr[n];
|
|
for (int i = 0; i < n; i++)
|
|
res[i] = (BoolExpr) Expr.create(getContext(), get(i).getNativeObject());
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* Translates the AST vector into an BitVecExpr[]
|
|
* */
|
|
public BitVecExpr[] ToBitVecExprArray()
|
|
{
|
|
int n = size();
|
|
BitVecExpr[] res = new BitVecExpr[n];
|
|
for (int i = 0; i < n; i++)
|
|
res[i] = (BitVecExpr)Expr.create(getContext(), get(i).getNativeObject());
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* Translates the AST vector into an ArithExpr[]
|
|
* */
|
|
public ArithExpr<?>[] ToArithExprExprArray()
|
|
{
|
|
int n = size();
|
|
ArithExpr<?>[] res = new ArithExpr[n];
|
|
for (int i = 0; i < n; i++)
|
|
res[i] = (ArithExpr<?>)Expr.create(getContext(), get(i).getNativeObject());
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* Translates the AST vector into an ArrayExpr[]
|
|
* */
|
|
public ArrayExpr<?, ?>[] ToArrayExprArray()
|
|
{
|
|
int n = size();
|
|
ArrayExpr<?, ?>[] res = new ArrayExpr[n];
|
|
for (int i = 0; i < n; i++)
|
|
res[i] = (ArrayExpr<?, ?>)Expr.create(getContext(), get(i).getNativeObject());
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* Translates the AST vector into an DatatypeExpr[]
|
|
* */
|
|
public DatatypeExpr<?>[] ToDatatypeExprArray()
|
|
{
|
|
int n = size();
|
|
DatatypeExpr<?>[] res = new DatatypeExpr[n];
|
|
for (int i = 0; i < n; i++)
|
|
res[i] = (DatatypeExpr<?>)Expr.create(getContext(), get(i).getNativeObject());
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* Translates the AST vector into an FPExpr[]
|
|
* */
|
|
public FPExpr[] ToFPExprArray()
|
|
{
|
|
int n = size();
|
|
FPExpr[] res = new FPExpr[n];
|
|
for (int i = 0; i < n; i++)
|
|
res[i] = (FPExpr)Expr.create(getContext(), get(i).getNativeObject());
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* Translates the AST vector into an FPRMExpr[]
|
|
* */
|
|
public FPRMExpr[] ToFPRMExprArray()
|
|
{
|
|
int n = size();
|
|
FPRMExpr[] res = new FPRMExpr[n];
|
|
for (int i = 0; i < n; i++)
|
|
res[i] = (FPRMExpr)Expr.create(getContext(), get(i).getNativeObject());
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* Translates the AST vector into an IntExpr[]
|
|
* */
|
|
public IntExpr[] ToIntExprArray()
|
|
{
|
|
int n = size();
|
|
IntExpr[] res = new IntExpr[n];
|
|
for (int i = 0; i < n; i++)
|
|
res[i] = (IntExpr)Expr.create(getContext(), get(i).getNativeObject());
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* Translates the AST vector into an RealExpr[]
|
|
* */
|
|
public RealExpr[] ToRealExprArray()
|
|
{
|
|
int n = size();
|
|
RealExpr[] res = new RealExpr[n];
|
|
for (int i = 0; i < n; i++)
|
|
res[i] = (RealExpr)Expr.create(getContext(), get(i).getNativeObject());
|
|
return res;
|
|
}
|
|
|
|
@Override
|
|
void incRef() {
|
|
Native.astVectorIncRef(getContext().nCtx(), getNativeObject());
|
|
}
|
|
|
|
@Override
|
|
void addToReferenceQueue() {
|
|
getContext().getReferenceQueue().storeReference(this, ASTVectorRef::new);
|
|
}
|
|
|
|
private static class ASTVectorRef extends Z3ReferenceQueue.Reference<ASTVector> {
|
|
|
|
private ASTVectorRef(ASTVector referent, ReferenceQueue<Z3Object> q) {
|
|
super(referent, q);
|
|
}
|
|
|
|
@Override
|
|
void decRef(Context ctx, long z3Obj) {
|
|
Native.astVectorDecRef(ctx.nCtx(), z3Obj);
|
|
}
|
|
}
|
|
} |