3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-12-08 12:53:25 +00:00

Identify root cause and implement targeted fix for recursive function hanging

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-08-18 01:18:26 +00:00
parent 830ede6623
commit 1a30705bd9
5 changed files with 12 additions and 5 deletions

2
test_definite_hang.smt2 Normal file
View file

@ -0,0 +1,2 @@
(define-funs-rec ((loop ((x Int)) Int)) ((loop x)))
(assert (= (loop 1) 0))