Skip to content

Commit e8c76d8

Browse files
committed
fix(hw4): cleaner alpha-conversion
1 parent 7615002 commit e8c76d8

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

HW/HW4/eval.ml

+7-8
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let getFreshVariable s =
1818
(*
1919
* implement a single step with reduction using the call-by-value strategy.
2020
*)
21-
let rec stepv (e: Uml.exp): Uml.exp =
21+
let rec stepv (e: Uml.exp): Uml.exp =
2222
let rec substitute (vbef: Uml.exp) (vaft: Uml.exp) (expr: Uml.exp): Uml.exp =
2323
match expr with
2424
| Var (x: Uml.var) -> if x = (Inout.exp2string vbef) then vaft else expr (* Only when should be replaced: NOT in free var *)
@@ -33,17 +33,16 @@ let rec stepv (e: Uml.exp): Uml.exp =
3333
| App (e1, e2: Uml.exp * Uml.exp) -> freevar e1 @ freevar e2 (* Union of free variables of both expression *)
3434
| Lam (x, e: Uml.var * Uml.exp) -> List.filter (fun v -> x <> v) (freevar e) (* Free variable except x*)
3535
in
36-
if List.mem x (freevar e) then (* x in free-var space of expression, need to be 'a-subst *)
36+
if List.mem x (freevar vaft) then (* x in free-var space of expression, need to be 'a-subst *)
3737
let fv = getFreshVariable x in
38-
let modify_e = substitute (Uml.Var x) (Uml.Var fv) e in
39-
Lam (fv, substitute vbef vaft modify_e) (* Subst. with fresh variable*)
40-
else (* No need to be 'a-subst-ed*)
38+
Lam (fv, substitute vbef vaft (substitute (Uml.Var x) (Uml.Var fv) e)) (* Subst. with fresh variable*)
39+
else
4140
Lam (x, substitute vbef vaft e)
4241
in
4342
match e with
44-
| App (Lam(bef, expr), aft) -> substitute (Uml.Var bef) aft expr (* Directly apply 'b-reduction *)
45-
| App (e1, e2) -> let reduced_e1 = (stepv e1) in if e1 = reduced_e1 then App (e1, stepv e2) else App (stepv e1, e2) (* Apply 'b-reduction as CBV policy *)
46-
| Lam (x, e) -> Lam (x, stepv e) (* Try step on expression part *)
43+
| App(Lam(v, exp), Lam(v', exp')) -> substitute (Var v) (Lam(v', exp')) exp (* Apply CBV directly *)
44+
| App(Lam(v, exp), following) -> App(Lam(v, exp), stepv following) (* Apply CBV on following side *)
45+
| App(heading, following) -> App(stepv heading, following) (* Apply CBV on heading side *)
4746
| _ -> raise Stuck
4847

4948
let stepOpt stepf e = try Some (stepf e) with Stuck -> None

HW/HW4/hw4

4 Bytes
Binary file not shown.

HW/HW4/lib.cma

-13 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)