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
|
Require Import Coq.Program.Tactics.
Variable A : Set.
Inductive vector : nat -> Type := vnil : vector 0 | vcons : A -> forall n, vector n -> vector (S n).
Goal forall n, forall v : vector (S n), vector n.
Proof.
intros n H.
dependent induction H.
inversion H0 ; subst.
assumption.
Save.
Require Import ProofIrrelevance.
Goal forall n, forall v : vector (S n), exists v' : vector n, exists a : A, v = vcons a n v'.
Proof.
intros n H.
dependent induction H.
inversion H0 ; subst.
rewrite (UIP_refl _ _ H0).
simpl.
exists H ; exists a.
reflexivity.
Save.
(* Extraction Unnamed_thm. *)
Inductive type : Type :=
| base : type
| arrow : type -> type -> type.
Inductive ctx : Type :=
| empty : ctx
| snoc : ctx -> type -> ctx.
Inductive term : ctx -> type -> Type :=
| ax : forall G tau, term (snoc G tau) tau
| weak : forall G tau, term G tau -> forall tau', term (snoc G tau') tau
| abs : forall G tau tau', term (snoc G tau) tau' -> term G (arrow tau tau').
Fixpoint app (G D : ctx) : ctx :=
match D with
| empty => G
| snoc D' x => snoc (app G D') x
end.
Lemma weakening : forall G D tau, term (app G D) tau -> forall tau', term (app (snoc G tau') D) tau.
Proof with simpl in * ; auto.
intros G D tau H.
dependent induction H generalizing G D.
destruct D...
subst.
apply weak ; apply ax.
inversion H ; subst.
apply ax.
induction D...
subst.
do 2 apply weak.
assumption.
apply weak.
apply IHterm.
inversion H0 ; subst ; reflexivity.
apply abs.
apply weak.
Admitted.
|