1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
use term::*;
use term::Term::*;
use self::Closure::*;
use self::Expression::*;
use std::collections::VecDeque;
#[derive(Debug, PartialEq, Clone)]
enum Closure {
Depth(usize),
TermInEnv(Term, Environment)
}
#[derive(Debug, PartialEq)]
enum Expression {
Evaluation(Closure),
Application(Box<Expression>, Term, Environment)
}
type Environment = VecDeque<Closure>;
fn whnf(term: Term, mut env: Environment) -> Expression {
match term {
Var(i) => match env.remove(i - 1) {
Some(Depth(i)) => Evaluation(Depth(i)),
Some(TermInEnv(t, e)) => whnf(t, e),
None => unreachable!()
},
Abs(t) => Evaluation(TermInEnv(Abs(t), env)),
App(lhs, rhs) => match whnf(*lhs, env.clone()) {
Evaluation(TermInEnv(Abs(lhs2), mut env2)) => {
env2.push_front(TermInEnv(*rhs, env));
whnf(*lhs2, env2)
},
expr => Application(Box::new(expr), *rhs, env)
}
}
}
fn reduce(depth: usize, exp: Expression) -> Term {
match exp {
Application(lhs, rhs, env) => app(reduce(depth, *lhs), nf(depth, rhs, env)),
Evaluation(TermInEnv(Abs(term), mut env)) => {
env.push_front(Depth(depth));
abs(nf(depth + 1, *term, env))
},
Evaluation(TermInEnv(term, _)) => term,
Evaluation(Depth(i)) => Var(depth - i)
}
}
fn nf(depth: usize, term: Term, env: Environment) -> Term {
reduce(depth, whnf(term, env))
}
pub fn normalize(term: Term) -> Term {
nf(0, term, VecDeque::new())
}
#[cfg(test)]
mod test {
#[test]
fn weak_head_normal_form() {
}
}