3
0
Fork 0
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:
Imran Settuba 2020-05-04 21:28:50 +02:00 committed by GitHub
parent 39fb44fe09
commit be998c308c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 266 additions and 266 deletions

View file

@ -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()));
}

View file

@ -3963,7 +3963,7 @@ public class Context implements AutoCloseable {
}
long nCtx()
public long nCtx()
{
if (m_ctx == 0)
throw new Z3Exception("Context closed");

View file

@ -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;
}