mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Allow different parsing strategies (#4205)
* modifiers * modifiers and function * revert * .
This commit is contained in:
parent
39fb44fe09
commit
be998c308c
|
@ -91,12 +91,12 @@ public class ASTVector extends Z3Object {
|
|||
return Native.astVectorToString(getContext().nCtx(), getNativeObject());
|
||||
}
|
||||
|
||||
ASTVector(Context ctx, long obj)
|
||||
public ASTVector(Context ctx, long obj)
|
||||
{
|
||||
super(ctx, obj);
|
||||
}
|
||||
|
||||
ASTVector(Context ctx)
|
||||
public ASTVector(Context ctx)
|
||||
{
|
||||
super(ctx, Native.mkAstVector(ctx.nCtx()));
|
||||
}
|
||||
|
|
|
@ -3963,7 +3963,7 @@ public class Context implements AutoCloseable {
|
|||
}
|
||||
|
||||
|
||||
long nCtx()
|
||||
public long nCtx()
|
||||
{
|
||||
if (m_ctx == 0)
|
||||
throw new Z3Exception("Context closed");
|
||||
|
|
|
@ -70,7 +70,7 @@ public abstract class Z3Object {
|
|||
return m_ctx;
|
||||
}
|
||||
|
||||
static long[] arrayToNative(Z3Object[] a)
|
||||
public static long[] arrayToNative(Z3Object[] a)
|
||||
{
|
||||
if (a == null)
|
||||
return null;
|
||||
|
@ -80,7 +80,7 @@ public abstract class Z3Object {
|
|||
return an;
|
||||
}
|
||||
|
||||
static int arrayLength(Z3Object[] a)
|
||||
public static int arrayLength(Z3Object[] a)
|
||||
{
|
||||
return (a == null) ? 0 : a.length;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue