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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
const intToName = (num) => {
let out = "";
for (let n = num + 1; n > 0; n--) {
out += String.fromCharCode(97 + (--n % 26));
n = Math.floor(n / 26);
}
return out;
};
// ------------
// CONSTRUCTORS
// ------------
const abstraction = (name) => (body) => ({
constructor: "abstraction",
name,
body,
});
const higherOrderAbstraction = (f) => ({ constructor: "h-abstraction", f });
const application = (left) => (right) => ({
constructor: "application",
left,
right,
});
const higherOrderApplication = (left) =>
left.constructor == "h-abstraction" ? left.f : application(left);
const symbol = (name) => ({ constructor: "symbol", name });
const definition = (name) => ({ constructor: "definition", name });
const show = (term) => {
switch (term.constructor) {
case "abstraction":
return `λ${term.name}.${show(term.body)}`;
case "application":
return `(${show(term.left)} ${show(term.right)})`;
case "symbol":
return `${term.name}`;
}
};
// ---------
// REDUCTION
// ---------
const toHigherOrder = (t) => {
const go = (env) => (t) => {
switch (t.constructor) {
case "application":
return higherOrderApplication(go(env)(t.left))(go(env)(t.right));
case "abstraction":
return higherOrderAbstraction((x) =>
go({ ...env, [t.name]: x })(t.body),
);
case "symbol":
if (t.name in env) return env[t.name];
throw Error("unbound symbol " + t.name);
default:
throw Error("unexpected " + t.constructor);
}
};
return go({})(t);
};
const fromHigherOrder = (t) => {
const go = (d) => (t) => {
// t = t();
switch (t.constructor) {
case "application":
return application(go(d)(t.left))(go(d)(t.right));
case "h-abstraction":
const name = intToName(d);
return abstraction(name)(go(d + 1)(t.f(symbol(name))));
case "symbol":
return t;
default:
throw Error("unexpected " + t.constructor);
}
};
return go(0)(t);
};
const reduce = (term) => {
return fromHigherOrder(toHigherOrder(term));
};
// -------
// PARSING
// -------
const consume = (str) => (predicate) => {
let out = "";
while (str && predicate(str[0])) {
out += str[0];
str = str.slice(1);
}
return [out, str.trim()];
};
const isSymbol = (x) => x >= "a" && x <= "z";
const isDefinition = (x) => (x >= "A" && x <= "Z") || (x >= "0" && x <= "9");
const parseTerm = (program) => {
const go = (str) => {
// skip spaces
str = str.trim();
const head = str[0];
const tail = str.slice(1).trim();
// abstraction start
if ("\\λ".includes(head)) {
const [name, tail1] = consume(tail)(isSymbol);
const tail2 = tail1.slice(1).trim(); // skip .
const [body, tail3] = go(tail2);
return [abstraction(name)(body), tail3];
}
// application start
if (head == "(") {
const [left, tail1] = go(tail);
const [right, tail2] = go(tail1);
return [application(left)(right), tail2.trim().slice(1)];
}
// application end - already consumed above
if (head == ")") {
throw Error("unexpected " + head);
}
// symbol / variable (lowercase letters)
if (isSymbol(head)) {
const [sym, tail1] = consume(str)(isSymbol);
return [symbol(sym), tail1];
}
// definition (uppercase letters)
if (isDefinition(head)) {
const [name, tail1] = consume(str)(isDefinition);
return [definition(name), tail1];
}
throw Error("unexpected " + head);
};
const [term, tail] = go(program);
if (tail != "") throw Error("unexpected " + tail);
return term;
};
const parse = (program) => {
const definitions = {};
const substituteDefinition = (t) => {
switch (t.constructor) {
case "application":
return application(substituteDefinition(t.left))(
substituteDefinition(t.right),
);
case "abstraction":
return abstraction(t.name)(substituteDefinition(t.body));
case "symbol":
return t;
case "definition":
if (t.name in definitions) return definitions[t.name];
else throw Error("invalid definition " + t.name);
default:
throw Error("unexpected " + t.constructor);
}
};
program
.trim()
.split("\n")
.filter((line) => !(line.startsWith("//") || line.trim() == ""))
.forEach((line) => {
const [definition, term] = line.split("=");
definitions[definition.trim()] = substituteDefinition(
parseTerm(term.trim()),
);
});
if (!("MAIN" in definitions)) throw Error("no 'MAIN' definition");
return definitions["MAIN"];
};
// ---
// CLI
// ---
const data = require("fs").readFileSync("/dev/stdin");
console.log(show(reduce(parse(data + ""))));
|