Disable deterministic reduction check

This check is overly aggressive and giving mostly false positives.
This commit is contained in:
William J. Bowman 2015-10-09 12:04:09 -04:00
parent b050c4f192
commit 4ce0a9ba35

View File

@ -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)))])