mirror of
https://github.com/Z3Prover/z3
synced 2026-06-10 19:07:18 +00:00
Fix TypeScript build error: remove redundant array length parameter
The Z3 TypeScript wrapper auto-generates array length parameters from the array itself, so passing assumptions.length explicitly causes a parameter count mismatch. Removed the redundant parameter. Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
1f376732b5
commit
1e296c3d4c
1 changed files with 0 additions and 1 deletions
|
|
@ -1924,7 +1924,6 @@ export function createApi(Z3: Z3Core): Z3HighLevel {
|
||||||
'',
|
'',
|
||||||
status,
|
status,
|
||||||
'',
|
'',
|
||||||
assumptions.length,
|
|
||||||
assumptions,
|
assumptions,
|
||||||
formula
|
formula
|
||||||
));
|
));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue