Skip to content

Commit 8be6087

Browse files
committed
fix a bug where we gave up too early
1 parent 0e1dbf3 commit 8be6087

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redex-lib/redex/private/preprocess-lang.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@
206206
(cond [good-edge
207207
(loop (hash-set edges v good-edge)
208208
vs
209-
(sub1 time))]
209+
(length vs))]
210210
[else
211211
(loop edges (append vs (list v)) (sub1 time))])])))
212212

0 commit comments

Comments
 (0)