week3 evaluator fix
authorJim Pryor <profjim@jimpryor.net>
Sun, 3 Oct 2010 20:29:13 +0000 (16:29 -0400)
committerJim Pryor <profjim@jimpryor.net>
Sun, 3 Oct 2010 20:29:13 +0000 (16:29 -0400)
Signed-off-by: Jim Pryor <profjim@jimpryor.net>
assignment_3_evaluator.mdwn

index 099bb76..b81a901 100644 (file)
@@ -2,6 +2,7 @@ Here are the definitions pre-loaded for working on assignment 3:
 
 <textarea id="INPUT" style="border: 2px solid black; color: black; font-family:
 monospace; height: 3in; overflow: auto; padding: 0.5em; width: 100%;">
+
        ; booleans
        let true = \x y. x in
        let false = \x y. y in
@@ -14,10 +15,10 @@ monospace; height: 3in; overflow: auto; padding: 0.5em; width: 100%;">
        let make_list = \h t. make_pair false (make_pair h t) in
        let head = \l. isempty l err (l snd fst) in
        let tail = \l. isempty l err (l snd snd) in
-       ;
+       
        ; a list of numbers to experiment on
        let mylist = make_list 1 (make_list 2 (make_list 3 empty)) in
-       ;
+       
        ; church numerals
        let iszero = \n. n (\x. false) true in
        let succ = \n s z. s (n s z) in
@@ -25,12 +26,12 @@ monospace; height: 3in; overflow: auto; padding: 0.5em; width: 100%;">
        let pred = \n. iszero n 0 (length (tail (n (\p. make_list junk p) empty))) in
        let leq = \m n. iszero(n pred m) in
        let eq = \m n. and (leq m n)(leq n m) in
-       ;
+       
        ; a fixed-point combinator for defining recursive functions
        let Y = \f. (\h. f (h h)) (\h. f (h h)) in
-       ;
+       
        let length = Y (\length l. isempty l 0 (succ (length (tail l)))) in
-       ;
+       
        ; synonyms
        let makePair = make_pair in
        let nil = empty in
@@ -38,8 +39,9 @@ monospace; height: 3in; overflow: auto; padding: 0.5em; width: 100%;">
        let makeList = make_list in
        let isZero = iszero in
        let mult = mul in
-       ;
+       
        length (tail mylist)
+
 </textarea>
 <input id="PARSE" value="Normalize" type="button">
 <input id="ETA" type="checkbox">do eta-reductions too