Disable deterministic reduction check
This check is overly aggressive and giving mostly false positives.
This commit is contained in:
parent
b050c4f192
commit
4ce0a9ba35
|
@ -648,7 +648,9 @@
|
|||
(where (_ e_r)
|
||||
,(let ([r (apply-reduction-relation* tt--> (term (Σ e)) #:cache-all? #t)])
|
||||
;; Efficient check for (= (length r) 1)
|
||||
(unless (null? (cdr r))
|
||||
;; NB: Check is overly aggressive and produces wrong error,
|
||||
;; because not reducing under lambda.
|
||||
#;(unless (null? (cdr r))
|
||||
(error "Church-Rosser broken" r))
|
||||
(car r)))])
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user