mirror of
https://github.com/Z3Prover/z3
synced 2025-04-25 01:55:32 +00:00
... convenience parameters, etc. Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
36 lines
613 B
Java
36 lines
613 B
Java
/**
|
|
* This file was automatically generated from BitVecExpr.cs
|
|
* w/ further modifications by:
|
|
* @author Christoph M. Wintersteiger (cwinter)
|
|
**/
|
|
|
|
package com.microsoft.z3;
|
|
|
|
/**
|
|
* Bit-vector expressions
|
|
**/
|
|
public class BitVecExpr extends Expr
|
|
{
|
|
|
|
/**
|
|
* The size of the sort of a bit-vector term.
|
|
* @throws Z3Exception
|
|
**/
|
|
public int getSortSize() throws Z3Exception
|
|
{
|
|
return ((BitVecSort) getSort()).getSize();
|
|
}
|
|
|
|
/**
|
|
* Constructor for BitVecExpr </summary>
|
|
**/
|
|
BitVecExpr(Context ctx)
|
|
{
|
|
super(ctx);
|
|
}
|
|
|
|
BitVecExpr(Context ctx, long obj) throws Z3Exception
|
|
{
|
|
super(ctx, obj);
|
|
}
|
|
}
|