3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 03:15:50 +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

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