-
Notifications
You must be signed in to change notification settings - Fork 1
/
StlcLn.dfy
637 lines (570 loc) · 19.7 KB
/
StlcLn.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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
// The Simply Typed Lambda-Calculus
// Locally nameless representation with cofinite quantification
// http://www.cis.upenn.edu/~plclub/popl08-tutorial/code/index.html#stlc
// http://www.chargueraud.org/softs/ln/
// https://github.com/namin/coq-sandbox/blob/master/STLC.v
datatype atom = a(i: nat);
function max(s: seq<atom>, start: int): int
ensures max(s, start)>=start;
ensures forall x:nat :: a(x) in s ==> x<=max(s, start);
{
if (s == []) then start
else if (s[0].i <= start) then max(s[1..], start)
else max(s[1..], s[0].i)
}
function fresh_from(ids: seq<atom>): atom
ensures fresh_from(ids) !in ids;
ensures fresh_from(ids).i>0;
{
a(max(ids, 0)+1)
}
datatype typ = typ_base | typ_arrow(t1: typ, t2: typ);
datatype exp = bvar(n: nat) | fvar(x: atom) | abs(body: exp) | app(f: exp, arg: exp);
function subst(z: atom, u: exp, e: exp): exp
decreases e;
{
match e
case bvar(i) => bvar(i)
case fvar(x) => if x==z then u else fvar(x)
case abs(e1) => abs(subst(z, u, e1))
case app(e1, e2) => app(subst(z, u, e1), subst(z, u, e2))
}
ghost method example_subst1(Y: atom, Z: atom)
requires Y!=Z;
ensures subst(Y, fvar(Z), abs(app(bvar(0), fvar(Y)))) == abs(app(bvar(0), fvar(Z)));
{
assert subst(Y, fvar(Z), app(bvar(0), fvar(Y))) == app(bvar(0), fvar(Z));
}
ghost method lemma_subst_eq_var(x: atom, u: exp)
ensures subst(x, u, fvar(x)) == u;
{
}
ghost method lemma_subst_neq_var(x: atom, y: atom, u: exp)
requires y != x;
ensures subst(x, u, fvar(y)) == fvar(y);
{
}
function fv(e: exp) : seq<atom>
decreases e;
{
match e
case bvar(i) => []
case fvar(x) => [x]
case abs(e1) => fv(e1)
case app(e1, e2) => fv(e1) + fv(e2)
}
ghost method lemma_subst_fresh(x: atom, e: exp, u: exp)
requires x !in fv(e);
ensures subst(x, u, e) == e;
{
}
ghost method lemma_subst_notin_fv(x: atom, y: atom, u: exp, e: exp)
requires x !in fv(e);
requires x !in fv(u);
ensures x !in fv(subst(y, u, e));
{
}
function size(e: exp): nat
decreases e;
ensures e.app? ==> size(e) > size(e.f);
ensures e.app? ==> size(e) > size(e.arg);
ensures e.abs? ==> size(e) > size(e.body);
{
match e
case bvar(i) => 1
case fvar(x) => 1
case abs(e1) => 1 + size(e1)
case app(e1, e2) => 1 + size(e1) + size(e2)
}
function open_rec(k: nat, u: exp, e: exp): exp
ensures u.fvar? ==> size(e) == size(open_rec(k, u, e));
decreases e;
{
match e
case bvar(i) => if k==i then u else bvar(i)
case fvar(x) => fvar(x)
case abs(e1) => abs(open_rec(k+1, u, e1))
case app(e1, e2) => app(open_rec(k, u, e1), open_rec(k, u, e2))
}
function open(e: exp, u: exp): exp
ensures u.fvar? ==> size(e) == size(open(e, u));
{
open_rec(0, u, e)
}
ghost method example_open(Y: atom)
ensures open(app(abs(app(bvar(1), bvar(0))), bvar(0)), fvar(Y)) == app(abs(app(fvar(Y), bvar(0))), fvar(Y));
{
calc == {
open(app(abs(app(bvar(1), bvar(0))), bvar(0)), fvar(Y));
open_rec(0, fvar(Y), app(abs(app(bvar(1), bvar(0))), bvar(0)));
app(open_rec(0, fvar(Y), abs(app(bvar(1), bvar(0)))), open_rec(0, fvar(Y), bvar(0)));
app(abs(open_rec(1, fvar(Y), app(bvar(1), bvar(0)))), open_rec(0, fvar(Y), bvar(0)));
app(abs(app(fvar(Y), bvar(0))), fvar(Y));
}
}
predicate lc(e: exp)
ensures lc(e) ==> !e.bvar?;
decreases size(e);
{
e.fvar? ||
(e.abs? && forall x :: x !in fv(e) ==> lc(open(e.body, fvar(x)))) ||
(e.app? && lc(e.f) && lc(e.arg))
}
ghost method lemma_open_rec_lc_core(e: exp, j: nat, v: exp, i: nat, u: exp)
requires i != j;
requires open_rec(j, v, e) == open_rec(i, u, open_rec(j, v, e));
ensures e == open_rec(i, u, e);
{
if (e.abs?) {
lemma_open_rec_lc_core(e.body, j+1, v, i+1, u);
}
}
ghost method lemma_open_rec_lc(k: nat, u: exp, e: exp)
requires lc(e);
ensures e == open_rec(k, u, e);
decreases size(e);
{
if (e.abs?) {
assert open_rec(k, u, e) == abs(open_rec(k+1, u, e.body));
var x := fresh_from(fv(e));
lemma_open_rec_lc(k+1, u, open(e.body, fvar(x)));
lemma_open_rec_lc_core(e.body, 0, fvar(x), k+1, u);
}
}
ghost method lemma_subst_open_rec(e1: exp, e2: exp, u: exp, x: atom, k: nat)
requires lc(u);
ensures subst(x, u, open_rec(k, e2, e1)) == open_rec(k, subst(x, u, e2), subst(x, u, e1));
{
if (e1.fvar?) {
if (e1.x==x) {
lemma_open_rec_lc(k, subst(x, u, e2), u);
}
}
}
ghost method lemma_subst_open_var(x: atom, y: atom, u: exp, e: exp)
requires y != x;
requires lc(u);
ensures open(subst(x, u, e), fvar(y)) == subst(x, u, open(e, fvar(y)));
{
lemma_subst_open_rec(e, fvar(y), u, x, 0);
}
ghost method lemma_subst_intro_core(x: atom, u: exp, e: exp, k: nat)
requires x !in fv(e);
ensures open_rec(k, u, e) == subst(x, u, open_rec(k, fvar(x), e));
{
}
ghost method lemma_subst_intro(x: atom, u: exp, e: exp)
requires x !in fv(e);
ensures open(e, u) == subst(x, u, open(e, fvar(x)));
{
if (e.abs?) {
lemma_subst_intro_core(x, u, e.body, 1);
} else if (e.app?) {
lemma_subst_intro(x, u, e.f);
lemma_subst_intro(x, u, e.arg);
}
}
predicate lc_c(e: exp)
decreases size(e);
{
e.fvar? ||
(e.abs? && exists L:seq<atom> :: forall x :: x !in L ==> lc_c(open(e.body, fvar(x)))) ||
(e.app? && lc_c(e.f) && lc_c(e.arg))
}
ghost method lemma_open_rec_lc_c(k: nat, u: exp, e: exp)
requires lc_c(e);
ensures e == open_rec(k, u, e);
decreases size(e);
{
if (e.abs?) {
assert open_rec(k, u, e) == abs(open_rec(k+1, u, e.body));
var L:seq<atom> :| forall x :: x !in L ==> lc_c(open(e.body, fvar(x)));
var x := fresh_from(L);
lemma_open_rec_lc_c(k+1, u, open(e.body, fvar(x)));
lemma_open_rec_lc_core(e.body, 0, fvar(x), k+1, u);
}
}
ghost method lemma_subst_open_rec_c(e1: exp, e2: exp, u: exp, x: atom, k: nat)
requires lc_c(u);
ensures subst(x, u, open_rec(k, e2, e1)) == open_rec(k, subst(x, u, e2), subst(x, u, e1));
{
if (e1.fvar?) {
if (e1.x==x) {
lemma_open_rec_lc_c(k, subst(x, u, e2), u);
}
}
}
ghost method lemma_subst_open_var_c(x: atom, y: atom, u: exp, e: exp)
requires y != x;
requires lc_c(u);
ensures open(subst(x, u, e), fvar(y)) == subst(x, u, open(e, fvar(y)));
{
lemma_subst_open_rec_c(e, fvar(y), u, x, 0);
}
ghost method lemma_subst_lc_c(x: atom, u: exp, e: exp)
requires lc_c(e);
requires lc_c(u);
requires lc_c(subst(x, u, e));
{
}
datatype pair<A, B> = P(fst: A, snd: B);
datatype option<A> = None | Some(get: A);
ghost method example_append_assoc<A>(s0: seq<A>, s1: seq<A>, s2: seq<A>, s3: seq<A>)
ensures s0+(s1+s2)+s3 == s0+s1+s2+s3;
{
}
ghost method example_simpl_env(x: atom, y: atom, t1: typ, t2: typ, E: seq<pair<atom,typ>>, F: seq<pair<atom,typ>>)
ensures ([P(x, t1)]+[])+([P(y,t2)]+[]+E)+F == [P(x,t1)]+[P(y,t2)]+E+F;
{
}
predicate binds(a: atom, t: typ, E: seq<pair<atom,typ>>)
ensures binds(a, t, E) <==> P(a, t) in E;
{
P(a, t) in E
}
ghost method example_binds(x: atom, t: typ, E: seq<pair<atom,typ>>, F: seq<pair<atom,typ>>)
ensures binds(x, t, E+[P(x,t)]+F);
{
}
ghost method helper_binds_concat(E: seq<pair<atom,typ>>, F: seq<pair<atom,typ>>, G: seq<pair<atom,typ>>, a: atom, t: typ)
requires binds(a, t, G+E);
ensures binds(a, t, G+F+E);
{
}
function lookup(a: atom, E: seq<pair<atom,typ>>): option<typ>
{
if (E==[]) then None else if E[0].fst==a then Some(E[0].snd) else lookup(a, E[1..])
}
ghost method helper_no_lookup_no_binds(x: atom, E: seq<pair<atom,typ>>)
requires lookup(x, E).None?;
ensures forall t :: !binds(x, t, E);
{
}
function dom(E: seq<pair<atom,typ>>): seq<atom>
ensures forall x :: x in dom(E) <==> lookup(x, E).Some?;
ensures forall x :: x !in dom(E) <==> lookup(x, E).None?;
ensures |E|>0 ==> forall x :: x in dom(E[1..]) ==> x in dom(E);
ensures |E|==|dom(E)|;
ensures forall i:nat :: i<|E| ==> E[i].fst==dom(E)[i];
ensures forall i:nat :: i<|E| ==> E[i].fst in dom(E);
ensures forall x :: x in dom(E) <==> exists i:nat :: i<|E| && x==E[i].fst;
decreases |E|;
{
if (E==[]) then [] else [E[0].fst]+dom(E[1..])
}
ghost method example_dom(x: atom, t: typ)
ensures dom([P(x, t)]) == [x];
{
calc == {
dom([P(x, t)]);
[P(x, t).fst]+dom([]);
[x];
}
}
predicate uniq(E: seq<pair<atom,typ>>)
{
forall i:nat, j:nat :: i<|E| && j<i ==> E[i].fst != E[j].fst
}
ghost method example_uniq(x: atom, y: atom, tx: typ, ty: typ)
requires x != y;
ensures uniq([P(x, tx), P(y, ty)]);
{
}
ghost method helper_uniq_extends(x: atom, t: typ, E: seq<pair<atom,typ>>)
requires x !in dom(E);
requires uniq(E);
ensures uniq(extends(x, t, E));
{
}
ghost method helper_uniq_parts(E: seq<pair<atom,typ>>, F: seq<pair<atom,typ>>, G: seq<pair<atom,typ>>)
requires uniq(G+F+E);
ensures uniq(G+E);
{
}
ghost method helper_uniq_minus(x: atom, t: typ, E: seq<pair<atom,typ>>)
requires uniq(extends(x, t, E));
ensures uniq(E);
ensures x !in dom(E);
{
if (x in dom(E)) {
assert exists i:nat :: i<|E| && x==E[i].fst;
var i:nat :| i<|E| && x==E[i].fst;
assert x==extends(x, t, E)[i+1].fst;
assert extends(x, t, E)[0].fst == extends(x, t, E)[i+1].fst;
assert !uniq(extends(x, t, E));
}
}
function extends(a: atom, t: typ, E: seq<pair<atom,typ>>): seq<pair<atom,typ>>
ensures extends(a, t, E)==[P(a, t)]+E;
{
[P(a, t)]+E
}
ghost method helper_env_plus_assoc(a: atom, t: typ, E: seq<pair<atom,typ>>, G: seq<pair<atom,typ>>)
ensures extends(a, t, G)+E == extends(a, t, G+E);
{
}
ghost method helper_env_plus_assoc2(a: atom, t: typ, E: seq<pair<atom,typ>>, F: seq<pair<atom,typ>>, G: seq<pair<atom,typ>>)
ensures extends(a, t, G+F+E) == extends(a, t, G)+F+E;
{
}
predicate typing_c(E: seq<pair<atom,typ>>, e: exp, t: typ)
decreases size(e);
{
(e.fvar? && uniq(E) && binds(e.x, t, E)) ||
(e.abs? && t.typ_arrow? && exists L:seq<atom> :: forall x :: x !in L ==> typing_c(extends(x, t.t1, E), open(e.body, fvar(x)), t.t2)) ||
(e.app? && exists t1 :: typing_c(E, e.f, typ_arrow(t1, t)) && typing_c(E, e.arg, t1))
}
ghost method helper_abs_typing_c_L(E: seq<pair<atom,typ>>, e: exp, t: typ) returns (L:seq<atom>)
requires e.abs?;
requires typing_c(E, e, t);
ensures t.typ_arrow?;
ensures forall x :: x !in L ==> typing_c(extends(x, t.t1, E), open(e.body, fvar(x)), t.t2);
{
assert exists L:seq<atom> :: forall x :: x !in L ==> typing_c(extends(x, t.t1, E), open(e.body, fvar(x)), t.t2);
var L_:seq<atom> :| forall x :: x !in L_ ==> typing_c(extends(x, t.t1, E), open(e.body, fvar(x)), t.t2);
L := L_;
}
ghost method helper_exists_abs_typing_c(L: seq<atom>, E: seq<pair<atom,typ>>, e: exp, t: typ)
requires e.abs?;
requires t.typ_arrow?;
requires forall x :: x !in L ==> typing_c(extends(x, t.t1, E), open(e.body, fvar(x)), t.t2);
ensures exists L:seq<atom> :: forall x :: x !in L ==> typing_c(extends(x, t.t1, E), open(e.body, fvar(x)), t.t2);
ensures typing_c(E, e, t);
{
}
ghost method lemma_typing_c_weakening_strengthened(E: seq<pair<atom,typ>>, F: seq<pair<atom,typ>>, G: seq<pair<atom,typ>>, e: exp, t: typ)
requires typing_c(G+E, e, t);
requires uniq(G+F+E);
ensures typing_c(G+F+E, e, t);
decreases size(e);
{
var E' := G+E;
var E'' := G+F+E;
if (e.fvar?) {
assert binds(e.x, t, E');
helper_binds_concat(E, F, G, e.x, t);
assert binds(e.x, t, E'');
assert typing_c(E'', e, t);
} else if (e.abs?) {
var L' := helper_abs_typing_c_L(E', e, t);
var L'':seq<atom> := L'+dom(E'');
forall (x | x !in L'')
ensures typing_c(extends(x, t.t1, E''), open(e.body, fvar(x)), t.t2);
{
assert x !in L';
assert x !in dom(E'');
helper_uniq_extends(x, t.t1, G+F+E);
assert uniq(extends(x, t.t1, G+F+E));
helper_env_plus_assoc2(x, t.t1, E, F, G);
assert uniq(extends(x, t.t1, G)+F+E);
assert typing_c(extends(x, t.t1, E'), open(e.body, fvar(x)), t.t2);
helper_env_plus_assoc(x, t.t1, E, G);
assert typing_c(extends(x, t.t1, G)+E, open(e.body, fvar(x)), t.t2);
lemma_typing_c_weakening_strengthened(E, F, extends(x, t.t1, G), open(e.body, fvar(x)), t.t2);
helper_env_plus_assoc(x, t.t1, F+E, G);
assert typing_c(extends(x, t.t1, E''), open(e.body, fvar(x)), t.t2);
}
assert forall x :: x !in L'' ==> typing_c(extends(x, t.t1, E''), open(e.body, fvar(x)), t.t2);
helper_exists_abs_typing_c(L'', E'', e, t);
} else if (e.app?) {
assert exists t1 :: typing_c(E', e.f, typ_arrow(t1, t)) && typing_c(E', e.arg, t1);
var t1 :| typing_c(E', e.f, typ_arrow(t1, t)) && typing_c(E', e.arg, t1);
lemma_typing_c_weakening_strengthened(E, F, G, e.f, typ_arrow(t1, t));
lemma_typing_c_weakening_strengthened(E, F, G, e.arg, t1);
assert typing_c(G+F+E, e, t);
} else {
}
}
ghost method lemma_typing_c_weakening(E: seq<pair<atom,typ>>, F: seq<pair<atom,typ>>, e: exp, t: typ)
requires typing_c(E, e, t);
requires uniq(F+E);
ensures typing_c(F+E, e, t);
{
assert []+E==E;
assert []+F+E==F+E;
lemma_typing_c_weakening_strengthened(E, F, [], e, t);
}
ghost method lemma_typing_subst_var_case(E: seq<pair<atom,typ>>, F: seq<pair<atom,typ>>, u: exp, s: typ, t: typ, z: atom, x: atom)
requires uniq(F+[P(z, s)]+E);
requires binds(x, t, F+[P(z, s)]+E);
requires typing_c(E, u, s);
ensures typing_c(F+E, subst(z, u, fvar(x)), t);
{
if (x == z) {
assert subst(z, u, fvar(x)) == u;
assert binds(z, s, F+[P(z, s)]+E);
assert t == s;
helper_uniq_parts(E, [P(z, s)], F);
lemma_typing_c_weakening(E, F, u, s);
assert typing_c(F+E, subst(z, u, fvar(x)), t);
} else {
assert subst(z, u, fvar(x)) == fvar(x);
assert binds(x, t, F+[P(z, s)]+E);
assert binds(x, t, F+E);
helper_uniq_parts(E, [P(z, s)], F);
}
}
ghost method lemma_typing_c_to_lc_c(E: seq<pair<atom,typ>>, e: exp, t: typ)
requires typing_c(E, e, t);
ensures lc_c(e);
decreases size(e);
{
if (e.abs?) {
var L := helper_abs_typing_c_L(E, e, t);
forall (x | x !in L)
ensures lc_c(open(e.body, fvar(x)));
{
lemma_typing_c_to_lc_c(extends(x, t.t1, E), open(e.body, fvar(x)), t.t2);
}
} else if (e.app?) {
assert exists t1 :: typing_c(E, e.f, typ_arrow(t1, t)) && typing_c(E, e.arg, t1);
var t1 :| typing_c(E, e.f, typ_arrow(t1, t)) && typing_c(E, e.arg, t1);
lemma_typing_c_to_lc_c(E, e.f, typ_arrow(t1, t));
lemma_typing_c_to_lc_c(E, e.arg, t1);
}
}
ghost method lemma_typing_c_subst(E: seq<pair<atom,typ>>, F: seq<pair<atom,typ>>, e: exp, u: exp, s: typ, t: typ, z: atom)
requires typing_c(F+[P(z,s)]+E, e, t);
requires typing_c(E, u, s);
ensures typing_c(F+E, subst(z, u, e), t);
decreases size(e);
{
var E' := F+[P(z,s)]+E;
var E'' := F+E;
if (e.fvar?) {
lemma_typing_subst_var_case(E, F, u, s, t, z, e.x);
} else if (e.abs?) {
var L' := helper_abs_typing_c_L(E', e, t);
var L'' := L'+[z]+dom(E');
forall (x | x !in L'')
ensures typing_c(extends(x, t.t1, F+E), open(subst(z, u, e.body), fvar(x)), t.t2) && x !=z;
{
assert x !in L';
assert x != z;
assert typing_c(extends(x, t.t1, E'), open(e.body, fvar(x)), t.t2);
helper_env_plus_assoc2(x, t.t1, E, [P(z,s)], F);
assert typing_c(extends(x, t.t1, F)+[P(z,s)]+E, open(e.body, fvar(x)), t.t2);
lemma_typing_c_subst(E, extends(x, t.t1, F), open(e.body, fvar(x)), u, s, t.t2, z);
assert typing_c(extends(x, t.t1, F)+E, subst(z, u, open(e.body, fvar(x))), t.t2);
helper_env_plus_assoc(x, t.t1, E, F);
assert typing_c(extends(x, t.t1, F+E), subst(z, u, open(e.body, fvar(x))), t.t2);
lemma_typing_c_to_lc_c(E, u, s);
lemma_subst_open_var_c(z, x, u, e.body);
assert subst(z, u, open(e.body, fvar(x))) == open(subst(z, u, e.body), fvar(x));
assert typing_c(extends(x, t.t1, F+E), open(subst(z, u, e.body), fvar(x)), t.t2);
}
helper_exists_abs_typing_c(L'', E'', subst(z, u, e), t);
} else if (e.app?) {
} else {
}
}
ghost method lemma_typing_c_subst_simple(E: seq<pair<atom,typ>>, e: exp, u: exp, s: typ, t: typ, z: atom)
requires typing_c(extends(z, s, E), e, t);
requires typing_c(E, u, s);
ensures typing_c(E, subst(z, u, e), t);
{
assert []+[P(z,s)]+E==extends(z, s, E);
lemma_typing_c_subst(E, [], e, u, s, t, z);
assert []+E==E;
}
predicate value_c(e: exp)
{
e.abs? && lc_c(e)
}
function eval_c(e: exp): option<exp>
{
/* beta */
if (e.app? && e.f.abs? && lc_c(e.f) && value_c(e.arg))
then Some(open(e.f.body, e.arg))
/* app f */
else if (e.app? && lc_c(e.arg) && eval_c(e.f).Some?)
then Some(app(eval_c(e.f).get, e.arg))
/* app arg */
else if (e.app? && value_c(e.f) && eval_c(e.arg).Some?)
then Some(app(e.f, eval_c(e.arg).get))
else None
}
ghost method theorem_preservation_c(E: seq<pair<atom,typ>>, e: exp, t: typ)
requires typing_c(E, e, t);
requires eval_c(e).Some?;
ensures typing_c(E, eval_c(e).get, t);
{
if (e.app? && e.f.abs? && lc_c(e.f) && value_c(e.arg)) {
assert exists t1 :: typing_c(E, e.f, typ_arrow(t1, t)) && typing_c(E, e.arg, t1);
var t1 :| typing_c(E, e.f, typ_arrow(t1, t)) && typing_c(E, e.arg, t1);
var L := helper_abs_typing_c_L(E, e.f, typ_arrow(t1, t));
var y := fresh_from(L+fv(e.f.body));
assert typing_c(extends(y, t1, E), open(e.f.body, fvar(y)), t);
lemma_typing_c_subst_simple(E, open(e.f.body, fvar(y)), e.arg, t1, t, y);
assert typing_c(E, subst(y, e.arg, open(e.f.body, fvar(y))), t);
assert y !in fv(e.f.body);
lemma_subst_intro(y, e.arg, e.f.body);
assert typing_c(E, open(e.f.body, e.arg), t);
assert typing_c(E, eval_c(e).get, t);
}
}
ghost method theorem_progress_c(e: exp, t: typ)
requires typing_c([], e, t);
ensures value_c(e) || eval_c(e).Some?;
{
lemma_typing_c_to_lc_c([], e, t);
if (e.app?) {
assert exists t1 :: typing_c([], e.f, typ_arrow(t1, t)) && typing_c([], e.arg, t1);
var t1 :| typing_c([], e.f, typ_arrow(t1, t)) && typing_c([], e.arg, t1);
theorem_progress_c(e.f, typ_arrow(t1, t));
theorem_progress_c(e.arg, t1);
assert eval_c(e).Some?;
}
}
ghost method lemma_typing_c_uniq(E: seq<pair<atom,typ>>, e: exp, t: typ)
requires typing_c(E, e, t);
ensures uniq(E);
decreases size(e);
{
if (e.abs?) {
var L := helper_abs_typing_c_L(E, e, t);
var y := fresh_from(L);
lemma_typing_c_uniq(extends(y, t.t1, E), open(e.body, fvar(y)), t.t2);
assert uniq(extends(y, t.t1, E));
helper_uniq_minus(y, t.t1, E);
assert uniq(E);
} else if (e.app?) {
assert exists t1 :: typing_c(E, e.f, typ_arrow(t1, t)) && typing_c(E, e.arg, t1);
var t1 :| typing_c(E, e.f, typ_arrow(t1, t)) && typing_c(E, e.arg, t1);
lemma_typing_c_uniq(E, e.arg, t1);
}
}
ghost method lemma_typing_c_rename(x: atom, y: atom, E: seq<pair<atom,typ>>, e: exp, t1: typ, t2: typ)
requires x !in fv(e);
requires y !in dom(E)+fv(e);
requires typing_c(extends(x, t1, E), open(e, fvar(x)), t2);
ensures typing_c(extends(y, t1, E), open(e, fvar(y)), t2);
{
if (x != y) {
lemma_typing_c_uniq(extends(x, t1, E), open(e, fvar(x)), t2);
helper_uniq_minus(x, t1, E);
helper_uniq_extends(y, t1, E);
assert uniq(extends(y, t1, E));
assert x !in dom(E);
helper_uniq_extends(x, t1, extends(y, t1, E));
assert [P(x, t1)]+[P(y,t1)]+E==extends(x, t1, extends(y, t1, E));
assert uniq([P(x, t1)]+[P(y,t1)]+E);
lemma_subst_intro(x, fvar(y), e);
assert open(e, fvar(y)) == subst(x, fvar(y), open(e, fvar(x)));
assert binds(y, t1, extends(y, t1, E));
assert typing_c(extends(y, t1, E), fvar(y), t1);
assert typing_c(extends(x, t1, E), open(e, fvar(x)), t2);
lemma_typing_c_weakening_strengthened(E, [P(y, t1)], [P(x, t1)], open(e, fvar(x)), t2);
assert typing_c([P(x, t1)]+[P(y, t1)]+E, open(e, fvar(x)), t2);
calc == {
[P(x, t1)]+[P(y, t1)]+E;
[P(x, t1)]+([P(y, t1)]+E);
[P(x, t1)]+extends(y, t1, E);
}
assert typing_c([P(x, t1)]+extends(y, t1, E), open(e, fvar(x)), t2);
lemma_typing_c_subst_simple(extends(y, t1, E), open(e, fvar(x)), fvar(y), t1, t2, x);
assert typing_c(extends(y, t1, E), subst(x, fvar(y), open(e, fvar(x))), t2);
lemma_subst_intro(x, fvar(y), e);
assert typing_c(extends(y, t1, E), open(e, fvar(y)), t2);
}
}