-
Notifications
You must be signed in to change notification settings - Fork 2
/
StlcX.dfy
567 lines (521 loc) · 16.1 KB
/
StlcX.dfy
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
// Proving type safety of a Simply Typed Lambda-Calculus in Dafny
// adapted from Coq (http://www.cis.upenn.edu/~bcpierce/sf/Stlc.html)
/// Utilities
// ... handy for partial functions
datatype option<A> = None | Some(get: A)
/// -----
/// Model
/// -----
/// Syntax
// Types
datatype ty = TBase // (opaque base type)
| TArrow(T1: ty, T2: ty) // T1 => T2
//BOOL?
| TBool // (base type for booleans)
//?BOOL
//NAT?
| TNat // (base type for naturals)
//?NAT
//REC?
| TVar(id: int) | TRec(X: nat, T: ty)// (iso-recursive types)
//?REC
// Terms
datatype tm = tvar(id: int) // x (variable)
| tapp(f: tm, arg: tm) // t t (application)
| tabs(x: int, T: ty, body: tm) // \x:T.t (abstraction)
//BOOL?
| ttrue | tfalse // true, false (boolean values)
| tif(c: tm, a: tm, b: tm) // if t then t else t (if expression)
//?BOOL
//NAT?
| tzero | tsucc(p: tm) | tprev(n: tm)// (naturals)
//BOOL?
| teq(n1: tm, n2: tm) // (equality on naturals)
//?BOOL
//?NAT
//REC?
| tfold(Tf: ty, tf: tm) | tunfold(tu: tm)// (iso-recursive terms)
//?REC
/// Operational Semantics
// Values
predicate value(t: tm)
{
t.tabs?
//BOOL?
|| t.ttrue? || t.tfalse?
//?BOOL
//NAT?
|| peano(t)
//?NAT
//REC?
|| (t.tfold? && value(t.tf))
//?REC
}
//NAT?
predicate peano(t: tm)
{
t.tzero? || (t.tsucc? && peano(t.p))
}
//?NAT
// Free Variables and Substitution
function fv(t: tm): set<int> //of free variables of t
{
match t
// interesting cases...
case tvar(id) => {id}
case tabs(x, T, body) => fv(body)-{x}//x is bound
// congruent cases...
case tapp(f, arg) => fv(f)+fv(arg)
//BOOL?
case tif(c, a, b) => fv(a)+fv(b)+fv(c)
case ttrue => {}
case tfalse => {}
//?BOOL
//NAT?
case tzero => {}
case tsucc(p) => fv(p)
case tprev(n) => fv(n)
//BOOL?
case teq(n1, n2) => fv(n1)+fv(n2)
//?BOOL
//?NAT
//REC?
case tfold(T, t1) => fv(t1)
case tunfold(t1) => fv(t1)
//?REC
}
function subst(x: int, s: tm, t: tm): tm //[x -> s]t
{
match t
// interesting cases...
case tvar(x') => if x==x' then s else t
// N.B. only capture-avoiding if s is closed...
case tabs(x', T, t1) => tabs(x', T, if x==x' then t1 else subst(x, s, t1))
// congruent cases...
case tapp(t1, t2) => tapp(subst(x, s, t1), subst(x, s, t2))
//BOOL?
case ttrue => ttrue
case tfalse => tfalse
case tif(t1, t2, t3) => tif(subst(x, s, t1), subst(x, s, t2), subst(x, s, t3))
//?BOOL
//NAT?
case tzero => tzero
case tsucc(p) => tsucc(subst(x, s, p))
case tprev(n) => tprev(subst(x, s, n))
//BOOL?
case teq(n1, n2) => teq(subst(x, s, n1), subst(x, s, n2))
//?BOOL
//?NAT
//REC?
case tfold(T, t1) => tfold(T, subst(x, s, t1))
case tunfold(t1) => tunfold(subst(x, s, t1))
//?REC
}
//REC?
function ty_fv(T: ty): set<int> //of free type variables of T
{
match T
case TVar(X) => {X}
case TRec(X, T1) => ty_fv(T1)-{X}
case TArrow(T1, T2) => ty_fv(T1)+ty_fv(T2)
case TBase => {}
//BOOL?
case TBool => {}
//?BOOL
//NAT?
case TNat => {}
//?NAT
}
function tsubst(X: int, S: ty, T: ty): ty
{
match T
case TVar(X') => if X==X' then S else T
case TRec(X', T1) => TRec(X', if X==X' then T1 else tsubst(X, S, T1))
case TArrow(T1, T2) => TArrow(tsubst(X, S, T1), tsubst(X, S, T2))
case TBase => TBase
//BOOL?
case TBool => TBool
//?BOOL
//NAT?
case TNat => TNat
//?NAT
}
predicate ty_closed(T: ty)
{
forall x :: x !in ty_fv(T)
}
//?REC
// Reduction
function step(t: tm): option<tm>
{
/* AppAbs */ if (t.tapp? && t.f.tabs? && value(t.arg)) then
Some(subst(t.f.x, t.arg, t.f.body))
/* App1 */ else if (t.tapp? && step(t.f).Some?) then
Some(tapp(step(t.f).get, t.arg))
/* App2 */ else if (t.tapp? && value(t.f) && step(t.arg).Some?) then
Some(tapp(t.f, step(t.arg).get))
//BOOL?
/* IfTrue */ else if (t.tif? && t.c == ttrue) then
Some(t.a)
/* IfFalse */ else if (t.tif? && t.c == tfalse) then
Some(t.b)
/* If */ else if (t.tif? && step(t.c).Some?) then
Some(tif(step(t.c).get, t.a, t.b))
//?BOOL
//NAT?
/* Prev0 */
else if (t.tprev? && t.n.tzero?) then
Some(tzero)
/* PrevSucc */ else if (t.tprev? && peano(t.n) && t.n.tsucc?) then
Some(t.n.p)
/* Prev */ else if (t.tprev? && step(t.n).Some?) then
Some(tprev(step(t.n).get))
/* Succ */ else if (t.tsucc? && step(t.p).Some?) then
Some(tsucc(step(t.p).get))
//BOOL?
/* EqTrue0 */ else if (t.teq? && t.n1.tzero? && t.n2.tzero?) then
Some(ttrue)
/* EqFalse1 */ else if (t.teq? && t.n1.tsucc? && peano(t.n1) && t.n2.tzero?) then
Some(tfalse)
/* EqFalse2 */ else if (t.teq? && t.n1.tzero? && t.n2.tsucc? && peano(t.n2)) then
Some(tfalse)
/* EqRec */ else if (t.teq? && t.n1.tsucc? && t.n2.tsucc? && peano(t.n1) && peano(t.n2)) then
Some(teq(t.n1.p, t.n2.p))
/* Eq1 */ else if (t.teq? && step(t.n1).Some?) then
Some(teq(step(t.n1).get, t.n2))
/* Eq2 */ else if (t.teq? && peano(t.n1) && step(t.n2).Some?) then
Some(teq(t.n1, step(t.n2).get))
//?BOOL
//?NAT
//REC?
/* UnfoldFold */ else if (t.tunfold? && t.tu.tfold? && value(t.tu.tf)) then Some(t.tu.tf)
/* Fold */ else if (t.tfold? && step(t.tf).Some?) then Some(tfold(t.Tf, step(t.tf).get))
/* Unfold */ else if (t.tunfold? && step(t.tu).Some?) then Some(tunfold(step(t.tu).get))
//?REC
else None
}
// Multistep reduction:
// The term t reduces to the term t' in n or less number of steps.
predicate reduces_to(t: tm, t': tm, n: nat)
decreases n;
{
t == t' || (n > 0 && step(t).Some? && reduces_to(step(t).get, t', n-1))
}
// Examples
lemma lemma_step_example1(n: nat)
requires n > 0;
// (\x:B=>B.x) (\x:B.x) reduces to (\x:B.x)
ensures reduces_to(tapp(tabs(0, TArrow(TBase, TBase), tvar(0)), tabs(0, TBase, tvar(0))),
tabs(0, TBase, tvar(0)), n);
{
}
/// Typing
// A context is a partial map from variable names to types.
function find(c: map<int,ty>, x: int): option<ty>
{
if (x in c) then Some(c[x]) else None
}
function extend(x: int, T: ty, c: map<int,ty>): map<int,ty>
{
c[x:=T]
}
// Typing Relation
function has_type(c: map<int,ty>, t: tm): option<ty>
decreases t;
{
match t
/* Var */ case tvar(id) => find(c, id)
/* Abs */ case tabs(x, T, body) =>
var ty_body := has_type(extend(x, T, c), body);
if (ty_body.Some?) then
Some(TArrow(T, ty_body.get)) else None
/* App */ case tapp(f, arg) =>
var ty_f := has_type(c, f);
var ty_arg := has_type(c, arg);
if (ty_f.Some? && ty_arg.Some?) then
if ty_f.get.TArrow? && ty_f.get.T1 == ty_arg.get then
Some(ty_f.get.T2) else None else None
//BOOL?
/* True */ case ttrue => Some(TBool)
/* False */ case tfalse => Some(TBool)
/* If */ case tif(cond, a, b) =>
var ty_c := has_type(c, cond);
var ty_a := has_type(c, a);
var ty_b := has_type(c, b);
if (ty_c.Some? && ty_a.Some? && ty_b.Some?) then
if ty_c.get == TBool && ty_a.get == ty_b.get then
ty_a
else None else None
//?BOOL
//NAT?
/* Zero */ case tzero => Some(TNat)
/* Prev */ case tprev(n) =>
var ty_n := has_type(c, n);
if (ty_n.Some?) then
if ty_n.get == TNat then
Some(TNat) else None else None
/* Succ */ case tsucc(p) =>
var ty_p := has_type(c, p);
if (ty_p.Some?) then
if ty_p.get == TNat then
Some(TNat) else None else None
//BOOL?
/* Eq */ case teq(n1, n2) =>
var ty_n1 := has_type(c, n1);
var ty_n2 := has_type(c, n2);
if (ty_n1.Some? && ty_n2.Some?) then
if ty_n1.get == TNat && ty_n2.get == TNat then
Some(TBool) else None else None
//?BOOL
//?NAT
//REC?
/* Fold */ case tfold(U, t1) =>
var ty_t1 := if (ty_closed(U)) then has_type(c, t1) else None;
if (ty_t1.Some?) then
if U.TRec? && ty_t1.get==tsubst(U.X, U, U.T) then
Some(U) else None else None
/* Unfold */ case tunfold(t1) =>
var ty_t1 := has_type(c, t1);
if ty_t1.Some? then
var U := ty_t1.get;
if U.TRec? then
Some(tsubst(U.X, U, U.T)) else None else None
//?REC
}
// Examples
lemma example_typing_1()
ensures has_type(map[], tabs(0, TBase, tvar(0))) == Some(TArrow(TBase, TBase));
{
}
lemma example_typing_2()
ensures has_type(map[], tabs(0, TBase, tabs(1, TArrow(TBase, TBase), tapp(tvar(1), tapp(tvar(1), tvar(0)))))) ==
Some(TArrow(TBase, TArrow(TArrow(TBase, TBase), TBase)));
{
var c := extend(1, TArrow(TBase, TBase), extend(0, TBase, map[]));
assert find(c, 0) == Some(TBase);
assert has_type(c, tvar(0)) == Some(TBase);
assert has_type(c, tvar(1)) == Some(TArrow(TBase, TBase));
assert has_type(c, tapp(tvar(1), tapp(tvar(1), tvar(0)))) == Some(TBase);
}
lemma nonexample_typing_1()
ensures has_type(map[], tabs(0, TBase, tabs(1, TBase, tapp(tvar(0), tvar(1))))) == None;
{
var c := extend(1, TBase, extend(0, TBase, map[]));
assert find(c, 0) == Some(TBase);
assert has_type(c, tapp(tvar(0), tvar(1))) == None;
}
lemma nonexample_typing_3(S: ty, T: ty)
ensures has_type(map[], tabs(0, S, tapp(tvar(0), tvar(0)))) != Some(T);
{
var c := extend(0, S, map[]);
assert has_type(c, tapp(tvar(0), tvar(0))) == None;
}
//BOOL?
lemma example_typing_bool()
ensures has_type(map[], tabs(0, TBase, tabs(1, TBase, tabs(2, TBool, tif(tvar(2), tvar(0), tvar(1)))))) ==
Some(TArrow(TBase, TArrow(TBase, TArrow(TBool, TBase))));
{
var c0 := extend(0, TBase, map[]);
var c1 := extend(1, TBase, c0);
var c2 := extend(2, TBool, c1);
assert has_type(c2, tvar(2)) == Some(TBool);
assert has_type(c2, tvar(1)) == Some(TBase);
assert has_type(c2, tvar(0)) == Some(TBase);
assert has_type(c2, tif(tvar(2), tvar(0), tvar(1))) == Some(TBase);
assert has_type(c1, tabs(2, TBool, tif(tvar(2), tvar(0), tvar(1)))) == Some(TArrow(TBool, TBase));
assert has_type(c0, tabs(1, TBase, tabs(2, TBool, tif(tvar(2), tvar(0), tvar(1))))) == Some(TArrow(TBase, TArrow(TBool, TBase)));
}
//?BOOL
//NAT?
lemma example_typing_nat()
ensures has_type(map[], tabs(0, TNat, tprev(tvar(0)))) == Some(TArrow(TNat, TNat));
{
var c := extend(0, TNat, map[]);
assert has_type(c, tprev(tvar(0)))==Some(TNat);
}
//?NAT
//REC?
// TODO
lemma example_typing_rec()
// ∅ |- foldµT. T→α(λx : µT. T → α. (unfold x) x) : µT. T → α
ensures has_type(map[], tfold(TRec(0, TArrow(TVar(0), TBase)), tabs(0, TRec(0, TArrow(TVar(0), TBase)), tapp(tunfold(tvar(0)), tvar(0))))) ==
Some(TRec(0, TArrow(TVar(0), TBase)));
{
var R := TRec(0, TArrow(TVar(0), TBase));
var c := extend(0, R, map[]);
//{x : µT. T → α} x : µT. T → α
assert has_type(c, tvar(0)) == Some(R);
//{x : µT. T → α} (unfold x):(µT. T → α) → α {x : µT. T → α} x : µT. T → α
assert tsubst(R.X, R, R.T) == TArrow(R, TBase);
assert has_type(c, tunfold(tvar(0))) == Some(TArrow(R, TBase));
//{x : µT. T → α} ( (unfold x) x)) : α
assert has_type(c, tapp(tunfold(tvar(0)), tvar(0))) == Some(TBase);
//∅ (λx : µT. T → α. (unfold x) x)) :(µT. T → α) → α
assert has_type(map[], tabs(0, R, tapp(tunfold(tvar(0)), tvar(0)))) == Some(TArrow(R, TBase));
assert ty_fv(R)==ty_fv(TArrow(TVar(0),TBase))-{0}=={};
assert ty_closed(R);
assert has_type(map[], tfold(TRec(0, TArrow(TVar(0), TBase)), tabs(0, TRec(0, TArrow(TVar(0), TBase)), tapp(tunfold(tvar(0)), tvar(0))))).Some?;
}
//?REC
/// -----------------------
/// Type-Safety Properties
/// -----------------------
// Progress:
// A well-typed term is either a value or it can step.
lemma theorem_progress(t: tm)
requires has_type(map[], t).Some?
ensures value(t) || step(t).Some?
{
}
lemma {:induction false} theorem_progress_manual(t: tm)
requires has_type(map[], t).Some?
ensures value(t) || step(t).Some?
{
match t
/* Var */ case tvar(id) =>
/* Abs */ case tabs(x, T, body) =>
/* App */ case tapp(f, arg) =>
theorem_progress_manual(f);
theorem_progress_manual(arg);
//BOOL?
/* True */ case ttrue =>
/* False */ case tfalse =>
/* If */ case tif(cond, a, b) =>
theorem_progress_manual(cond);
theorem_progress_manual(a);
theorem_progress_manual(b);
//?BOOL
//NAT?
/* Zero */ case tzero =>
/* Prev */ case tprev(n) =>
theorem_progress_manual(n);
/* Succ */ case tsucc(p) =>
theorem_progress_manual(p);
//BOOL?
/* Eq */ case teq(n1, n2) =>
theorem_progress_manual(n1);
theorem_progress_manual(n2);
//?BOOL
//?NAT
//REC?
/* Fold */ case tfold(U, t1) =>
if (ty_closed(U)) {
theorem_progress_manual(t1);
}
/* Unfold */ case tunfold(t1) =>
theorem_progress_manual(t1);
//?REC
}
// Towards preservation and the substitution lemma
// If x is free in t and t is well-typed in some context,
// then this context must contain x.
lemma {:induction c, t} lemma_free_in_context(c: map<int,ty>, x: int, t: tm)
requires x in fv(t);
requires has_type(c, t).Some?;
ensures find(c, x).Some?;
decreases t;
{
}
// A closed term does not contain any free variables.
// N.B. We're only interested in proving type soundness of closed terms.
predicate closed(t: tm)
{
forall x :: x !in fv(t)
}
// If a term can be well-typed in an empty context,
// then it is closed.
lemma corollary_typable_empty__closed(t: tm)
requires has_type(map[], t).Some?;
ensures closed(t);
{
forall (x:int) ensures x !in fv(t);
{
if (x in fv(t)) {
lemma_free_in_context(map[], x, t);
assert false;
}
}
}
// If a term t is well-typed in context c,
// and context c' agrees with c on all free variables of t,
// then the term t is well-typed in context c',
// with the same type as in context c.
lemma {:induction t} lemma_context_invariance(c: map<int,ty>, c': map<int,ty>, t: tm)
requires has_type(c, t).Some?;
requires forall x: int :: x in fv(t) ==> find(c, x) == find(c', x);
ensures has_type(c, t) == has_type(c', t);
decreases t;
{
if (t.tabs?) {
assert fv(t.body) == fv(t) || fv(t.body) == fv(t) + {t.x};
lemma_context_invariance(extend(t.x, t.T, c), extend(t.x, t.T, c'), t.body);
}
}
// Substitution preserves typing:
// If s has type S in an empty context,
// and t has type T in a context extended with x having type S,
// then [x -> s]t has type T as well.
lemma lemma_substitution_preserves_typing(c: map<int,ty>, x: int, s: tm, t: tm)
requires has_type(map[], s).Some?;
requires has_type(extend(x, has_type(map[], s).get, c), t).Some?;
ensures has_type(c, subst(x, s, t)) == has_type(extend(x, has_type(map[], s).get, c), t);
decreases t;
{
var S := has_type(map[], s).get;
var cs := extend(x, S, c);
var T := has_type(cs, t).get;
if (t.tvar?) {
if (t.id==x) {
assert T == S;
corollary_typable_empty__closed(s);
lemma_context_invariance(map[], c, s);
}
}
if (t.tabs?) {
if (t.x==x) {
lemma_context_invariance(cs, c, t);
} else {
var cx := extend(t.x, t.T, c);
var csx := extend(x, S, cx);
var cxs := extend(t.x, t.T, cs);
lemma_context_invariance(cxs, csx, t.body);
lemma_substitution_preserves_typing(cx, x, s, t.body);
}
}
}
// Preservation:
// A well-type term which steps preserves its type.
lemma theorem_preservation(t: tm)
requires has_type(map[], t).Some?;
requires step(t).Some?;
ensures has_type(map[], step(t).get) == has_type(map[], t);
{
if (t.tapp? && value(t.f) && value(t.arg)) {
lemma_substitution_preserves_typing(map[], t.f.x, t.arg, t.f.body);
}
}
// A normal form cannot step.
predicate normal_form(t: tm)
{
step(t).None?
}
// A stuck term is a normal form that is not a value.
predicate stuck(t: tm)
{
normal_form(t) && !value(t)
}
// Type soundness:
// A well-typed term cannot be stuck.
lemma corollary_soundness(t: tm, t': tm, T: ty, n: nat)
requires has_type(map[], t) == Some(T);
requires reduces_to(t, t', n);
ensures !stuck(t');
decreases n;
{
theorem_progress(t);
if (t != t') {
theorem_preservation(t);
corollary_soundness(step(t).get, t', T, n-1);
}
}
/// QED