-
Notifications
You must be signed in to change notification settings - Fork 2
/
Norm.dfy
838 lines (745 loc) · 22.2 KB
/
Norm.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
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
// Normalization of STLC
// http://www.cis.upenn.edu/~bcpierce/sf/Norm.html
// --- BEGIN excerpt from Stlc.dfy ---
// Utilities
datatype option<A> = None | Some(get: A)
// Syntax
// Types
datatype ty = TBool | TArrow(paramT: ty, bodyT: ty)
// Terms
datatype tm = tvar(id: nat) | tapp(f: tm, arg: tm) | tabs(x: nat, T: ty, body: tm) | ttrue | tfalse | tif(c: tm, a: tm, b: tm)
// Operational Semantics
// Values
function value(t: tm): bool
{
t.tabs? || t.ttrue? || t.tfalse?
}
// Free Variables and Substitution
function subst(x: nat, s: tm, t: tm): tm
{
match t
case tvar(x') => if x==x' then s else t
case tabs(x', T, t1) => tabs(x', T, if x==x' then t1 else subst(x, s, t1))
case tapp(t1, t2) => tapp(subst(x, s, t1), subst(x, s, t2))
case ttrue => ttrue
case tfalse => tfalse
case tif(t1, t2, t3) => tif(subst(x, s, t1), subst(x, s, t2), subst(x, s, t3))
}
// 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? && step(t.arg).Some?) then Some(tapp(t.f, step(t.arg).get))
/* 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))
else None
}
function reduces_to(t: tm, t': tm, n: nat): bool
decreases n
{
t == t' || (n > 0 && step(t).Some? && reduces_to(step(t).get, t', n-1))
}
// Typing
// Contexts
datatype partial_map<A> = Empty | Extend(x: nat, v: A, rest: partial_map<A>)
function find<A>(m: partial_map<A>, x: nat): option<A>
{
match m
case Empty => None
case Extend(x', v, rest) => if x==x' then Some(v) else find(rest, x)
}
datatype context = Context(m: partial_map<ty>)
// Typing Relation
function has_type(c: context, t: tm): option<ty>
decreases t
{
match t
/* Var */ case tvar(id) => find(c.m, id)
/* Abs */ case tabs(x, T, body) =>
var ty_body := has_type(Context(Extend(x, T, c.m)), 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? && ty_f.get.TArrow? && ty_f.get.paramT == ty_arg.get)
then Some(ty_f.get.bodyT)
else None
/* 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? && ty_c.get == TBool && ty_a.get == ty_b.get)
then ty_a
else None
}
// Properties
// Free Occurrences
function appears_free_in(x: nat, t: tm): bool
{
/* var */ (t.tvar? && t.id==x) ||
/* app1 */ (t.tapp? && appears_free_in(x, t.f)) ||
/* app2 */ (t.tapp? && appears_free_in(x, t.arg)) ||
/* abs */ (t.tabs? && t.x!=x && appears_free_in(x, t.body)) ||
/* if1 */ (t.tif? && appears_free_in(x, t.c)) ||
/* if2 */ (t.tif? && appears_free_in(x, t.a)) ||
/* if3 */ (t.tif? && appears_free_in(x, t.b))
}
ghost function closed(t: tm): bool
{
forall x: nat :: !appears_free_in(x, t)
}
// Substitution Lemma
lemma lemma_free_in_context(c: context, x: nat, t: tm)
requires appears_free_in(x, t)
requires has_type(c, t).Some?
ensures find(c.m, x).Some?
ensures has_type(c, t).Some?
decreases t
{
if (t.tabs?) {
assert t.x != x;
assert has_type(Context(Extend(t.x, t.T, c.m)), t.body).Some?;
lemma_free_in_context(Context(Extend(t.x, t.T, c.m)), x, t.body);
assert find(Extend(t.x, t.T, c.m), x).Some?;
}
}
lemma corollary_typable_empty__closed(t: tm)
requires has_type(Context(Empty), t).Some?
ensures closed(t)
{
forall x: nat ensures !appears_free_in(x, t)
{
if (appears_free_in(x, t)) {
lemma_free_in_context(Context(Empty), x, t);
assert find<ty>(Empty, x).Some?;
assert false;
}
assert !appears_free_in(x, t);
}
}
lemma lemma_context_invariance(c: context, c': context, t: tm)
requires has_type(c, t).Some?
requires forall x: nat :: appears_free_in(x, t) ==> find(c.m, x) == find(c'.m, x)
ensures has_type(c, t) == has_type(c', t)
decreases t
{
if (t.tabs?) {
assert find(Extend(t.x, t.T, c.m), t.x) == find(Extend(t.x, t.T, c'.m), t.x);
lemma_context_invariance(Context(Extend(t.x, t.T, c.m)), Context(Extend(t.x, t.T, c'.m)), t.body);
}
}
lemma lemma_substitution_preserves_typing(c: context, x: nat, t': tm, t: tm)
requires has_type(Context(Empty), t').Some?
requires has_type(Context(Extend(x, has_type(Context(Empty), t').get, c.m)), t).Some?
ensures has_type(c, subst(x, t', t)) == has_type(Context(Extend(x, has_type(Context(Empty), t').get, c.m)), t)
decreases t
{
if (t.tvar? && t.id==x) {
corollary_typable_empty__closed(t');
lemma_context_invariance(Context(Empty), c, t');
}
if (t.tabs?) {
var U := has_type(Context(Empty), t').get;
if (t.x==x) {
lemma_context_invariance(Context(Extend(x, U, c.m)), c, t);
} else {
var c_px := Context(Extend(t.x, t.T, Extend(x, U, c.m)));
var c_xp := Context(Extend(x, U, Extend(t.x, t.T, c.m)));
var c_p := Context(Extend(t.x, t.T, c.m));
assert find(c_px.m, x) == find(c_xp.m, x);
assert find(c_px.m, t.x) == find(c_xp.m, t.x);
lemma_context_invariance(c_px, c_xp, t.body);
lemma_substitution_preserves_typing(c_p, x, t', t.body);
}
}
}
// Preservation
lemma theorem_preservation(t: tm)
requires has_type(Context(Empty), t).Some?
requires step(t).Some?
ensures has_type(Context(Empty), step(t).get) == has_type(Context(Empty), t)
{
if (t.tapp? && step(t.f).None? && step(t.arg).None?) {
lemma_substitution_preserves_typing(Context(Empty), t.f.x, t.arg, t.f.body);
}
}
// --- END excerpt from Stlc.dfy ---
ghost function halts(t: tm): bool
{
exists t', n:nat :: reduces_to(t, t', n) && value(t')
}
lemma lemma_value_halts(v: tm)
requires value(v)
ensures halts(v)
{
assert reduces_to(v, v, 0);
}
ghost function R(T: ty, t: tm): bool
{
match T
/* bool */ case TBool =>
has_type(Context(Empty), t) == Some(TBool) &&
halts(t)
/* arrow */ case TArrow(T1, T2) =>
has_type(Context(Empty), t) == Some(TArrow(T1, T2)) &&
halts(t) &&
(forall s :: R(T1, s) ==> R(T2, tapp(t, s)))
}
lemma lemma_R_halts(T: ty, t: tm)
requires R(T, t)
ensures halts(t)
{
}
lemma lemma_R_typable_empty(T: ty, t: tm)
requires R(T, t)
ensures has_type(Context(Empty), t) == Some(T)
{
}
// Membership in R_T is invariant under evaluation
lemma lemma_step_preserves_halting(t: tm, t': tm)
requires step(t) == Some(t')
ensures halts(t) <==> halts(t')
{
if (halts(t)) {
forall (t'', n:nat | reduces_to(t, t'', n) && value(t''))
ensures reduces_to(t', t'', n-1) && value(t'')
{
}
}
if (!halts(t)) {
forall (t'', n:nat | !reduces_to(t, t'', n+1) || !value(t''))
ensures !reduces_to(t', t'', n) || !value(t'')
{
}
}
}
lemma lemma_step_preserves_R(T: ty, t: tm, t': tm)
requires step(t) == Some(t')
requires R(T, t)
ensures R(T, t')
{
theorem_preservation(t);
lemma_step_preserves_halting(t, t');
if (T.TArrow?) {
var T1 := T.paramT;
var T2 := T.bodyT;
assert R(TArrow(T1, T2), t);
forall (s | R(T1, s))
ensures R(T2, tapp(t', s))
{
assert R(T2, tapp(t, s));
lemma_step_preserves_R(T2, tapp(t, s), tapp(t', s));
}
}
}
lemma lemma_multistep_preserves_R(T: ty, t: tm, t': tm, n: nat)
requires reduces_to(t, t', n)
requires R(T, t)
ensures R(T, t')
decreases n
{
if (t != t' && n > 0) {
lemma_step_preserves_R(T, t, step(t).get);
lemma_multistep_preserves_R(T, step(t).get, t', n-1);
}
}
lemma lemma_step_preserves_R'(T: ty, t: tm, t': tm)
requires has_type(Context(Empty), t) == Some(T)
requires step(t) == Some(t')
requires R(T, t')
ensures R(T, t)
{
lemma_step_preserves_halting(t, t');
if (T.TArrow?) {
var T1 := T.paramT;
var T2 := T.bodyT;
assert R(TArrow(T1, T2), t');
forall (s | R(T1, s))
ensures R(T2, tapp(t, s))
{
assert R(T2, tapp(t', s));
lemma_R_typable_empty(T1, s);
lemma_step_preserves_R'(T2, tapp(t, s), tapp(t', s));
}
}
}
lemma lemma_multistep_preserves_R'(T: ty, t: tm, t': tm, n: nat)
requires has_type(Context(Empty), t) == Some(T)
requires reduces_to(t, t', n)
requires R(T, t')
ensures R(T, t)
decreases n
{
if (t != t' && n > 0) {
theorem_preservation(t);
lemma_multistep_preserves_R'(T, step(t).get, t', n-1);
lemma_step_preserves_R'(T, t, step(t).get);
}
}
// Closed instances of terms of type T belongs to R_T
// Multisubstitutions, multi-extensions, and instantiations
function msubst(e: partial_map<tm>, t: tm): tm
{
match e
case Empty => t
case Extend(x, v, e') => msubst(e', subst(x, v, t))
}
function mextend<X>(init: partial_map<X>, c: partial_map<X>): partial_map<X>
{
match c
case Empty => init
case Extend(x, v, c') => Extend(x, v, mextend(init, c'))
}
function lookup<X>(n: nat, nxs: partial_map<X>): option<X>
{
find(nxs, n)
}
function drop<X>(n: nat, nxs: partial_map<X>): partial_map<X>
{
match nxs
case Empty => Empty
case Extend(n', x, nxs') =>
if (n'==n) then drop(n, nxs') else Extend(n', x, drop(n, nxs'))
}
ghost function instantiation(c: partial_map<ty>, e: partial_map<tm>): bool
{
match c
case Empty => e.Empty?
case Extend(x, T, c') =>
match e
case Empty => false
case Extend(xe, v, e') =>
xe==x && value(v) && R(T, v) && instantiation(c', e')
}
// More substitution facts
lemma lemma_vacuous_substitution(t: tm, x: nat)
requires !appears_free_in(x, t)
ensures forall t' :: subst(x, t', t) == t
{
}
lemma lemma_subst_closed(t: tm)
requires closed(t)
ensures forall x:nat, t' :: subst(x, t', t) == t
{
forall (x:nat)
ensures forall t' :: subst(x, t', t) == t
{
lemma_vacuous_substitution(t, x);
}
}
lemma lemma_subst_not_afi(t: tm, x: nat, v: tm)
requires closed(v)
ensures !appears_free_in(x, subst(x, v, t))
{
}
lemma lemma_duplicate_subst(t': tm, x: nat, t: tm, v: tm)
requires closed(v)
ensures subst(x, t, subst(x, v, t')) == subst(x, v, t')
{
lemma_subst_not_afi(t', x, v);
lemma_vacuous_substitution(subst(x, v, t'), x);
}
lemma lemma_swap_subst(t: tm, x: nat, x1: nat, v: tm, v1: tm)
requires x != x1
requires closed(v)
requires closed(v1)
ensures subst(x1, v1, subst(x, v, t)) == subst(x, v, subst(x1, v1, t))
{
if (t.tvar?) {
if (t.id==x) {
lemma_subst_closed(v);
}
if (t.id==x1) {
lemma_subst_closed(v1);
}
}
}
// Properties of multi-substitutions
lemma lemma_msubst_closed_any(t: tm, e: partial_map<tm>)
requires closed(t)
ensures msubst(e, t) == t
{
match e {
case Empty =>
case Extend(x, v, e') =>
lemma_subst_closed(t);
lemma_msubst_closed_any(t, e');
}
}
lemma lemma_msubst_closed(t: tm)
requires closed(t)
ensures forall e :: msubst(e, t) == t
{
forall (e: partial_map<tm>)
ensures msubst(e, t) == t
{
lemma_msubst_closed_any(t, e);
}
}
ghost function closed_env(e: partial_map<tm>): bool
{
match e
case Empty => true
case Extend(x, t, e') => closed(t) && closed_env(e')
}
lemma lemma_subst_msubst(e: partial_map<tm>, x: nat, v: tm, t: tm)
requires closed(v)
requires closed_env(e)
ensures msubst(e, subst(x, v, t)) == subst(x, v, msubst(drop(x, e), t))
{
match e {
case Empty =>
case Extend(x', v', e') =>
if (x==x') {
lemma_duplicate_subst(t, x, v', v);
}
else {
lemma_swap_subst(t, x, x', v, v');
}
}
}
lemma lemma_msubst_var(e: partial_map<tm>, x: nat)
requires closed_env(e)
ensures lookup(x, e).None? ==> msubst(e, tvar(x)) == tvar(x)
ensures lookup(x, e).Some? ==> msubst(e, tvar(x)) == lookup(x, e).get
{
match e {
case Empty =>
case Extend(x', t, e) =>
if (x'==x) {
lemma_msubst_closed(t);
}
}
}
lemma lemma_msubst_abs(e: partial_map<tm>, x: nat, T: ty, t: tm)
ensures msubst(e, tabs(x, T, t)) == tabs(x, T, msubst(drop(x, e), t))
{
match e {
case Empty =>
case Extend(x', t', e') =>
}
}
lemma lemma_msubst_app(e: partial_map<tm>, t1: tm, t2: tm)
ensures msubst(e, tapp(t1, t2)) == tapp(msubst(e, t1), msubst(e, t2))
{
match e {
case Empty =>
case Extend(x, t, e') =>
}
}
lemma lemma_msubst_true(e: partial_map<tm>)
ensures msubst(e, ttrue) == ttrue
{
match e {
case Empty =>
case Extend(x, t, e') =>
}
}
lemma lemma_msubst_false(e: partial_map<tm>)
ensures msubst(e, tfalse) == tfalse
{
match e {
case Empty =>
case Extend(x, t, e') =>
}
}
lemma lemma_msubst_if(e: partial_map<tm>, c: tm, a: tm, b: tm)
ensures msubst(e, tif(c, a, b)) == tif(msubst(e, c), msubst(e, a), msubst(e, b))
{
match e {
case Empty =>
case Extend(x, t, e') =>
}
}
// Properties of multi-extensions
lemma lemma_mextend(c: partial_map<ty>)
ensures mextend(Empty, c) == c
{
}
lemma lemma_mextend_lookup(c: partial_map<ty>, x: nat)
ensures lookup(x, c) == lookup(x, mextend(Empty, c))
{
}
lemma lemma_mextend_drop(c: partial_map<ty>, init: partial_map<ty>, x: nat, x': nat)
ensures lookup(x', mextend(init, drop(x, c))) == if x==x' then lookup(x', init) else lookup(x', mextend(init, c))
{
}
// Properties of Instantiations
lemma lemma_instantiation_domains_match_any(c: partial_map<ty>, e: partial_map<tm>, x: nat)
requires instantiation(c, e)
requires lookup(x, c).Some?
ensures lookup(x, e).Some?
{
match c {
case Empty =>
case Extend(x', T, c') =>
match e {
case Empty =>
case Extend(xe, t, e') =>
assert x'==xe;
if (x!=x') {
lemma_instantiation_domains_match_any(c', e', x);
}
}
}
}
lemma lemma_instantiation_domains_match(c: partial_map<ty>, e: partial_map<tm>)
requires instantiation(c, e)
ensures forall x:nat :: lookup(x, c).Some? ==> lookup(x, e).Some?
{
forall (x:nat | lookup(x, c).Some?)
ensures lookup(x, e).Some?
{
lemma_instantiation_domains_match_any(c, e, x);
}
}
lemma lemma_instantiation_env_closed(c: partial_map<ty>, e: partial_map<tm>)
requires instantiation(c, e)
ensures closed_env(e)
{
match e {
case Empty =>
case Extend(x, t, e') =>
match c {
case Empty =>
case Extend(x', T, c') =>
assert x==x';
lemma_R_typable_empty(T, t);
corollary_typable_empty__closed(t);
lemma_instantiation_env_closed(c', e');
}
}
}
lemma lemma_instantiation_R(c: partial_map<ty>, e: partial_map<tm>, x: nat, t: tm, T: ty)
requires instantiation(c, e)
requires lookup(x, c) == Some(T)
requires lookup(x, e) == Some(t)
ensures R(T, t)
{
match e {
case Empty =>
case Extend(x', t', e') =>
match c {
case Empty =>
case Extend(x'', T', c') =>
assert x'==x'';
if (x==x') {
}
else {
lemma_instantiation_R(c', e', x, t, T);
}
}
}
}
lemma lemma_instantiation_drop_any(c: partial_map<ty>, e: partial_map<tm>, x: nat)
requires instantiation(c, e)
ensures instantiation(drop(x, c), drop(x, e))
{
match e {
case Empty =>
assert drop(x, e) == e;
match c {
case Empty =>
assert drop(x, c) == c;
case Extend(x'', T', c') =>
}
case Extend(x', t', e') =>
match c {
case Empty =>
case Extend(x'', T', c') =>
assert x'==x'';
lemma_instantiation_drop_any(c', e', x);
}
}
}
lemma lemma_instantiation_drop(c: partial_map<ty>, e: partial_map<tm>)
requires instantiation(c, e)
ensures forall x:nat :: instantiation(drop(x, c), drop(x, e))
{
forall (x:nat)
ensures instantiation(drop(x, c), drop(x, e))
{
lemma_instantiation_drop_any(c, e, x);
}
}
// Congruence lemmas on multistep
lemma lemma_multistep_App2(v: tm, t: tm, t': tm, n: nat)
requires value(v)
requires reduces_to(t, t', n)
ensures reduces_to(tapp(v, t), tapp(v, t'), n)
decreases n
{
if (t != t') {
lemma_multistep_App2(v, step(t).get, t', n-1);
}
}
// The R Lemma
lemma lemma_msubst_preserves_typing_any(c: partial_map<ty>, e: partial_map<tm>, init: partial_map<ty>, t: tm, S: ty)
requires instantiation(c, e)
requires has_type(Context(mextend(init, c)), t) == Some(S)
ensures has_type(Context(init), msubst(e, t)) == Some(S)
{
match c {
case Empty =>
case Extend(x, T, c') =>
match e {
case Empty =>
case Extend(xe, v, e') =>
lemma_R_typable_empty(T, v);
lemma_substitution_preserves_typing(Context(mextend(init, c')), x, v, t);
lemma_msubst_preserves_typing_any(c', e', init, subst(x, v, t), S);
}
}
}
lemma lemma_msubst_preserves_typing(c: partial_map<ty>, e: partial_map<tm>)
requires instantiation(c, e)
ensures forall init, t, S ::
has_type(Context(mextend(init, c)), t) == Some(S) ==>
has_type(Context(init), msubst(e, t)) == Some(S)
{
forall (init, t, S | has_type(Context(mextend(init, c)), t) == Some(S))
ensures has_type(Context(init), msubst(e, t)) == Some(S)
{
lemma_msubst_preserves_typing_any(c, e, init, t, S);
}
}
// more helpers for R lemma
lemma lemma_reduces_to_value_if(T: ty, c: tm, a: tm, b: tm, c': tm, a': tm, b': tm, nc: nat, na: nat, nb: nat)
requires has_type(Context(Empty), c) == Some(TBool)
requires has_type(Context(Empty), a) == Some(T)
requires has_type(Context(Empty), b) == Some(T)
requires reduces_to(c, c', nc) && value(c')
requires reduces_to(a, a', na) && value(a')
requires reduces_to(b, b', nb) && value(b')
ensures c' == ttrue ==> reduces_to(tif(c, a, b), a', nc+na+1)
ensures c' == tfalse ==> reduces_to(tif(c, a, b), b', nc+nb+1)
ensures c' == ttrue || c' == tfalse
ensures has_type(Context(Empty), tif(c, a, b)) == Some(T)
decreases nc+na+nb
{
if (c != c') {
theorem_preservation(c);
lemma_reduces_to_value_if(T, step(c).get, a, b, c', a', b', nc-1, na, nb);
} else {
if (c' == ttrue) {
if (a != a') {
theorem_preservation(a);
lemma_reduces_to_value_if(T, c, step(a).get, b, c', a', b', nc, na-1, nb);
}
}
if (c' == tfalse) {
if (b != b') {
theorem_preservation(b);
lemma_reduces_to_value_if(T, c, a, step(b).get, c', a', b', nc, na, nb-1);
}
}
}
}
lemma lemma_R_if(T: ty, c: tm, a: tm, b: tm)
requires R(TBool, c)
requires R(T, a)
requires R(T, b)
requires has_type(Context(Empty), tif(c, a, b)) == Some(T)
ensures R(T, tif(c, a, b))
{
assert R(TBool, c);
assert R(T, a);
assert R(T, b);
assert exists c', nc:nat :: reduces_to(c, c', nc) && value(c');
assert exists a', na:nat :: reduces_to(a, a', na) && value(a');
assert exists b', nb:nat :: reduces_to(b, b', nb) && value(b');
forall (c', a', b', nc:nat, na:nat, nb:nat |
reduces_to(c, c', nc) && value(c') &&
reduces_to(a, a', na) && value(a') &&
reduces_to(b, b', nb) && value(b'))
ensures R(T, tif(c, a, b))
{
lemma_reduces_to_value_if(has_type(Context(Empty), a).get, c, a, b, c', a', b', nc, na, nb);
if (c' == ttrue) {
lemma_multistep_preserves_R(T, a, a', na);
lemma_multistep_preserves_R'(T, tif(c, a, b), a', nc+na+1);
}
if (c' == tfalse) {
lemma_multistep_preserves_R(T, b, b', nb);
lemma_multistep_preserves_R'(T, tif(c, a, b), b', nc+nb+1);
}
}
}
// the R lemma, finally...
lemma lemma_msubst_R(c: partial_map<ty>, e: partial_map<tm>, t: tm, T: ty)
requires has_type(Context(c), t) == Some(T)
requires instantiation(c, e)
ensures R(T, msubst(e, t))
decreases t
{
lemma_instantiation_env_closed(c, e);
match t {
case tvar(id) =>
lemma_instantiation_domains_match(c, e);
lemma_msubst_var(e, id);
lemma_instantiation_R(c, e, id, lookup(id, e).get, T);
case tabs(x, T1, body) =>
lemma_mextend(c);
lemma_msubst_preserves_typing_any(c, e, Empty, tabs(x, T1, body), T);
lemma_msubst_abs(e, x, T1, body);
assert has_type(Context(Empty), tabs(x, T1, msubst(drop(x, e), body))) == Some(T);
assert has_type(Context(Empty), msubst(e, t)) == Some(T);
assert reduces_to(msubst(e, t), msubst(e, t), 0);
assert value(msubst(e, t));
assert halts(msubst(e, t));
forall (s | R(T1, s))
ensures R(T.bodyT, tapp(msubst(e, t), s))
{
forall (s', n:nat | reduces_to(s, s', n) && value(s'))
ensures R(T.bodyT, tapp(msubst(e, t), s))
{
lemma_multistep_preserves_R(T1, s, s', n);
lemma_R_typable_empty(T1, s');
assert has_type(Context(Empty), tapp(msubst(e, t), s')) == Some(T.bodyT);
corollary_typable_empty__closed(s');
lemma_msubst_preserves_typing_any(c, e, Empty, tabs(x, T1, body), T);
lemma_subst_msubst(e, x, s', body);
lemma_msubst_R(Extend(x, T1, c), Extend(x, s', e), body, T.bodyT);
lemma_step_preserves_R'(T.bodyT, tapp(msubst(e, t), s'), msubst(Extend(x, s', e), body));
assert R(T.bodyT, tapp(msubst(e, t), s'));
lemma_multistep_App2(msubst(e, t), s, s', n);
lemma_multistep_preserves_R'(T.bodyT, tapp(msubst(e, t), s), tapp(msubst(e, t), s'), n);
}
assert forall s', n:nat :: reduces_to(s, s', n) && value(s') ==> R(T.bodyT, tapp(msubst(e, t), s));
lemma_R_halts(T1, s);
assert exists s', n:nat :: reduces_to(s, s', n) && value(s');
assert R(T.bodyT, tapp(msubst(e, t), s));
}
case tapp(f, arg) =>
lemma_msubst_R(c, e, f, has_type(Context(c), f).get);
lemma_msubst_R(c, e, arg, has_type(Context(c), arg).get);
lemma_msubst_app(e, f, arg);
case ttrue =>
lemma_msubst_true(e);
assert reduces_to(ttrue, ttrue, 0);
case tfalse =>
lemma_msubst_false(e);
assert reduces_to(tfalse, tfalse, 0);
case tif(cond, a, b) =>
lemma_msubst_R(c, e, cond, TBool);
lemma_msubst_R(c, e, a, T);
lemma_msubst_R(c, e, b, T);
lemma_msubst_if(e, cond, a, b);
lemma_mextend(c);
lemma_msubst_preserves_typing_any(c, e, Empty, t, T);
lemma_R_if(T, msubst(e, cond), msubst(e, a), msubst(e, b));
}
}
// Normalization Theorem
lemma theorem_normalization(t: tm)
requires has_type(Context(Empty), t).Some?
ensures halts(t)
{
var T := has_type(Context(Empty), t).get;
lemma_msubst_R(Empty, Empty, t, T);
lemma_R_halts(T, t);
}