Add new test for redex production sort.

Running on the previous version caused unbounded recursion.
This commit is contained in:
Max New 2013-10-13 19:09:30 -05:00
parent d0c73c12ab
commit b182fe2c2c

View File

@ -101,3 +101,14 @@
(try-it 100 NRep v)
(try-it 100 NRep v2)
;; Test production sort
(define-language rec
(e (e e)
v)
(v (λ (x) e)
x)
(x variable-not-otherwise-mentioned))
(try-it 100 rec e)
(try-it 100 rec v)