-
Notifications
You must be signed in to change notification settings - Fork 0
/
sywtwatc.js
301 lines (207 loc) · 5.31 KB
/
sywtwatc.js
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/*
* Making representations of types
*/
var Foo = { tag: "Foo" };
var Bar = { tag: "Bar" };
var Baz = { tag: "Baz" };
function prod(a,b) {
return { tag: "*", left: a, right: b };
}
function arr(a,b) {
return { tag: "->", arg: a, ret: b };
}
/*
* A type
* ======
*/
function judgment_type(a) {
/* -------- Foo Formation
* Foo type
*
* -------- Bar Formation
* Bar type
*
* -------- Baz Formation
* Baz type
*/
if ("Foo" == a.tag || "Bar" == a.tag || "Baz" == a.tag) {
return true;
}
/* A type B type
* ---------------- * Formation
* A*B type
*/
else if ("*" == a.tag) {
return judgment_type(a.left) && judgment_type(a.right);
}
/* A type B type
* ---------------- -> Formation
* A -> B type
*/
else if ("->" == a.tag) {
return judgment_type(a.arg) && judgment_type(a.ret);
}
/*
* Nothing else is a type
*/
else {
return false;
}
}
/*
* Making representations of contexts
*/
var empty = { tag: "<>" }
function snoc(g,x,a) {
return { tag: ",:", rest: g, name: x, type: a };
}
/*
* Testing whether or not a variable is in a context
*/
function not_in(n, g) {
if ("<>" == g.tag) {
return true;
} else {
if (n == g.name) {
return false;
} else {
return not_in(n, g.rest);
}
}
}
/*
* G ctx
* =====
*/
function judgment_ctx(g) {
/*
* ------ empty context
* <> ctx
*/
if ("<>" == g.tag) {
return true;
}
/*
* G ctx A type x is not in G
* -------------------------------- new var
* G, x : A ctx
*/
else if (",:" == g.tag) {
return judgment_ctx(g.rest) &&
judgment_type(g.type) &&
not_in(g.name, g.rest);
}
/*
* Nothing else is a context
*/
else {
return false;
}
}
/*
* Making representations of terms
*/
function pair(m,n) {
return { tag: "(,)", first: m, second: n };
}
function split(p, x, a, y, b, m) {
return { tag: "split",
pair: p,
name_x: x, type_a: a,
name_y: y, type_b: b,
body: m };
}
function lam(x,m) {
return { tag: "lam", name: x, body: m };
}
function app(m,n,a) {
return { tag: "app", fun: m, arg: n, type_arg: a };
}
function v(n) {
return { tag: "variable", name: n };
}
/*
* Checking if two types are equal
*/
function type_equality(a,b) {
if (("Foo" == a.tag && "Foo" == b.tag) ||
("Bar" == a.tag && "Bar" == b.tag) ||
("Baz" == a.tag && "Baz" == b.tag)) {
return true;
} else if ("*" == a.tag && "*" == b.tag) {
return type_equality(a.left, b.left) && type_equality(a.right, b.right);
} else if ("->" == a.tag && "->" == b.tag) {
return type_equality(a.arg, b.arg) && type_equality(a.ret, b.ret);
} else {
return false;
}
}
/*
* Checking if a variable has a type in a context
*/
function var_has_type(n,a,g) {
if ("<>" == g.tag) {
return false;
} else if (",:" == g.tag) {
if (n == g.name) {
return type_equality(a, g.type);
} else {
return var_has_type(n, a, g.rest);
}
}
}
/*
* G !- M : A
* ==========
*/
function judgment_check(g, m, a) {
/*
* G !- M : A G !- N : B
* ------------------------ * Intro
* G !- (M,N) : A*B
*/
if ("(,)" == m.tag && "*" == a.tag) {
return judgment_check(g, m.first, a.left) &&
judgment_check(g, m.second, a.right);
}
/*
* G !- P : A*B G, x : A, y : B !- M : C
* ----------------------------------------- * Elim
* G !- split P as (x :: A, y :: B) in M : C
*/
else if ("split" == m.tag) {
return judgment_check(g, m.pair, prod(m.type_a, m.type_b)) &&
judgment_check(snoc(snoc(g, m.name_x, m.type_a), m.name_y, m.type_b), m.body, a);
}
/*
* G, x : A !- M : B
* ------------------ -> Intro
* G !- \x.M : A -> B
*/
else if ("lam" == m.tag && "->" == a.tag) {
return judgment_check(snoc(g, m.name, a.arg), m.body, a.ret);
}
/*
* G !- M : A -> B G !- N : A
* ----------------------------- -> Elim
* G !- app(M,N :: A) : B
*/
else if ("app" == m.tag) {
return judgment_check(g, m.fun, arr(m.type_arg, a)) &&
judgment_check(g, m.arg, m.type_arg);
}
/*
* x has type A in G
* ----------------- variable
* G !- x : A
*/
else if ("variable" == m.tag) {
return var_has_type(m.name, a, g);
}
/*
* Nothing else is well-typed
*/
else {
return false;
}
}