3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-19 16:53: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:
copilot-swe-agent[bot] 2026-01-17 20:14:45 +00:00
parent 1f376732b5
commit 1e296c3d4c

View file

@ -1924,7 +1924,6 @@ export function createApi(Z3: Z3Core): Z3HighLevel {
'',
status,
'',
assumptions.length,
assumptions,
formula
));