MCPcopy Create free account
hub / github.com/Z3Prover/z3 / arrayToNative

Method arrayToNative

src/api/java/Z3Object.java:73–81  ·  view source on GitHub ↗
(Z3Object[] a)

Source from the content-addressed store, hash-verified

71 }
72
73 public static long[] arrayToNative(Z3Object[] a)
74 {
75 if (a == null)
76 return null;
77 long[] an = new long[a.length];
78 for (int i = 0; i < a.length; i++)
79 an[i] = (a[i] == null) ? 0 : a[i].getNativeObject();
80 return an;
81 }
82
83 public static int arrayLength(Z3Object[] a)
84 {

Callers 15

consequenceMethod · 0.80
TupleSortMethod · 0.80
EnumSortMethod · 0.80
updateMethod · 0.80
substituteMethod · 0.80
substituteVarsMethod · 0.80
substituteFunsMethod · 0.80
createMethod · 0.80
CheckMethod · 0.80
checkMethod · 0.80
FuncDeclMethod · 0.80
ofMethod · 0.80

Calls 1

getNativeObjectMethod · 0.80

Tested by

no test coverage detected