mirror of
https://github.com/Z3Prover/z3
synced 2025-06-18 03:46:17 +00:00
parent
d21fc642b4
commit
77942a35dc
1 changed files with 1 additions and 2 deletions
|
@ -130,8 +130,7 @@ public class Goal extends Z3Object {
|
||||||
int n = size();
|
int n = size();
|
||||||
BoolExpr[] res = new BoolExpr[n];
|
BoolExpr[] res = new BoolExpr[n];
|
||||||
for (int i = 0; i < n; i++)
|
for (int i = 0; i < n; i++)
|
||||||
res[i] = new BoolExpr(getContext(), Native.goalFormula(getContext()
|
res[i] = (BoolExpr) Expr.create(getContext(), Native.goalFormula(getContext().nCtx(), getNativeObject(), i));
|
||||||
.nCtx(), getNativeObject(), i));
|
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue