mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
Remove redundant cast
This commit is contained in:
parent
93ad8d32b9
commit
54e5bf2422
4 changed files with 5 additions and 5 deletions
|
@ -373,7 +373,7 @@ public class Context extends IDisposable
|
|||
|
||||
{
|
||||
checkContextMatch(names);
|
||||
int n = (int) names.length;
|
||||
int n = names.length;
|
||||
ConstructorList[] cla = new ConstructorList[n];
|
||||
long[] n_constr = new long[n];
|
||||
for (int i = 0; i < n; i++)
|
||||
|
@ -2384,7 +2384,7 @@ public class Context extends IDisposable
|
|||
{
|
||||
|
||||
return Native.benchmarkToSmtlibString(nCtx(), name, logic, status,
|
||||
attributes, (int) assumptions.length,
|
||||
attributes, assumptions.length,
|
||||
AST.arrayToNative(assumptions), formula.getNativeObject());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue