2024-09-04 12:41:17 +02:00
|
|
|
|
From Coq Require Import Strings.String.
|
|
|
|
|
Require Import terms.
|
|
|
|
|
Require Import subst.
|
|
|
|
|
Require Import equiv.
|
|
|
|
|
Require Import subtype.
|
2024-09-17 03:13:36 +02:00
|
|
|
|
Require Import context.
|
|
|
|
|
Require Import morph.
|
2024-09-04 12:41:17 +02:00
|
|
|
|
Require Import smallstep.
|
|
|
|
|
Require Import typing.
|
|
|
|
|
|
2024-09-16 15:14:53 +02:00
|
|
|
|
Lemma typing_weakening : forall Γ e τ x σ,
|
|
|
|
|
(Γ |- e \is τ) ->
|
|
|
|
|
((ctx_assign x σ Γ) |- e \is τ)
|
2024-09-04 12:41:17 +02:00
|
|
|
|
.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
Proof.
|
|
|
|
|
intros.
|
|
|
|
|
induction H.
|
2024-09-04 12:41:17 +02:00
|
|
|
|
|
2024-09-19 01:46:29 +02:00
|
|
|
|
- apply T_Var.
|
|
|
|
|
apply C_shuffle.
|
|
|
|
|
apply H.
|
2024-09-19 07:01:31 +02:00
|
|
|
|
|
2024-09-19 01:46:29 +02:00
|
|
|
|
- apply T_Let with (σ:=σ0).
|
|
|
|
|
apply IHexpr_type1.
|
|
|
|
|
admit.
|
|
|
|
|
Admitted.
|
2024-09-19 07:01:31 +02:00
|
|
|
|
|
|
|
|
|
Lemma typing_subst : forall Γ x σ s e τ,
|
|
|
|
|
(ctx_assign x σ Γ) |- e \is τ ->
|
|
|
|
|
Γ |- s \is σ ->
|
|
|
|
|
Γ |- (expr_subst x s e) \is τ.
|
|
|
|
|
Proof.
|
|
|
|
|
Admitted.
|
|
|
|
|
|
|
|
|
|
Lemma typing_tsubst : forall Γ α σ e τ,
|
|
|
|
|
Γ |- e \is τ ->
|
|
|
|
|
Γ |- (expr_specialize α σ e) \is (type_subst α σ τ).
|
|
|
|
|
Proof.
|
|
|
|
|
Admitted.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-09-19 01:46:29 +02:00
|
|
|
|
Lemma map_type : forall Γ,
|
|
|
|
|
Γ |- [{ %"map"% }] \is [<
|
|
|
|
|
∀"σ",∀"τ", (%"σ"% -> %"τ"%) -> [%"σ"%] -> [%"τ"%]
|
|
|
|
|
>].
|
|
|
|
|
Proof.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
Admitted.
|
|
|
|
|
|
2024-09-19 07:01:31 +02:00
|
|
|
|
Lemma specialized_map_type : forall Γ τ τ',
|
|
|
|
|
Γ |- [{ %"map"% # τ # τ' }] \is [<
|
|
|
|
|
(τ -> τ') -> [τ] -> [τ']
|
|
|
|
|
>].
|
|
|
|
|
Proof.
|
|
|
|
|
Admitted.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(* morphism has valid typing *)
|
2024-09-16 15:14:53 +02:00
|
|
|
|
Lemma morphism_path_solves_type : forall Γ τ τ' m,
|
|
|
|
|
(translate_morphism_path Γ τ τ' m) ->
|
|
|
|
|
Γ |- m \is (type_morph τ τ')
|
2024-09-04 12:41:17 +02:00
|
|
|
|
.
|
|
|
|
|
Proof.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
intros.
|
|
|
|
|
induction H.
|
|
|
|
|
|
|
|
|
|
(* Sub *)
|
|
|
|
|
apply T_MorphAbs.
|
2024-09-19 01:46:29 +02:00
|
|
|
|
apply T_Descend with (τ:=τ).
|
2024-09-16 15:14:53 +02:00
|
|
|
|
apply T_Var.
|
|
|
|
|
apply C_take.
|
|
|
|
|
apply H.
|
|
|
|
|
|
|
|
|
|
(* Lift *)
|
|
|
|
|
apply T_MorphAbs.
|
2024-09-16 15:58:29 +02:00
|
|
|
|
apply T_Ascend.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
apply T_App with (σ':=τ) (σ:=τ).
|
|
|
|
|
apply T_MorphFun.
|
|
|
|
|
apply typing_weakening.
|
|
|
|
|
apply IHtranslate_morphism_path.
|
|
|
|
|
apply T_Descend with (τ:=(type_ladder σ τ)).
|
|
|
|
|
apply T_Var.
|
|
|
|
|
apply C_take.
|
|
|
|
|
apply TSubRepr_Ladder, TSubRepr_Refl, TEq_Refl.
|
2024-09-19 01:46:29 +02:00
|
|
|
|
apply id_morphism_path.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* Single *)
|
|
|
|
|
apply T_Var.
|
|
|
|
|
apply H.
|
|
|
|
|
|
|
|
|
|
(* Chain *)
|
|
|
|
|
apply T_MorphAbs.
|
|
|
|
|
apply T_App with (σ':=τ') (σ:=τ') (τ:=τ'').
|
|
|
|
|
apply T_MorphFun.
|
|
|
|
|
apply typing_weakening.
|
|
|
|
|
apply IHtranslate_morphism_path2.
|
2024-09-19 01:46:29 +02:00
|
|
|
|
|
2024-09-16 15:14:53 +02:00
|
|
|
|
apply T_App with (σ':=τ) (σ:=τ) (τ:=τ').
|
|
|
|
|
apply T_MorphFun.
|
|
|
|
|
apply typing_weakening.
|
|
|
|
|
apply IHtranslate_morphism_path1.
|
|
|
|
|
|
|
|
|
|
apply T_Var.
|
|
|
|
|
apply C_take.
|
2024-09-19 01:46:29 +02:00
|
|
|
|
apply id_morphism_path.
|
|
|
|
|
apply id_morphism_path.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* Map Sequence *)
|
|
|
|
|
apply T_MorphAbs.
|
|
|
|
|
apply T_App with (σ':=(type_spec (type_id "Seq") τ)) (σ:=(type_spec (type_id "Seq") τ)).
|
|
|
|
|
apply T_App with (σ':=(type_fun τ τ')) (σ:=(type_fun τ τ')).
|
|
|
|
|
|
2024-09-19 07:01:31 +02:00
|
|
|
|
apply specialized_map_type.
|
|
|
|
|
apply typing_weakening.
|
|
|
|
|
apply T_MorphFun.
|
|
|
|
|
apply IHtranslate_morphism_path.
|
2024-09-19 01:46:29 +02:00
|
|
|
|
|
2024-09-19 07:01:31 +02:00
|
|
|
|
apply id_morphism_path.
|
|
|
|
|
auto using T_Var, C_take.
|
|
|
|
|
apply id_morphism_path.
|
|
|
|
|
Qed.
|
2024-09-19 01:46:29 +02:00
|
|
|
|
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
2024-09-19 01:46:29 +02:00
|
|
|
|
|
2024-09-04 12:41:17 +02:00
|
|
|
|
|
|
|
|
|
(* reduction step preserves well-typedness *)
|
2024-09-16 15:14:53 +02:00
|
|
|
|
Lemma preservation : forall Γ e e' τ,
|
2024-09-05 12:47:30 +02:00
|
|
|
|
(Γ |- e \is τ) ->
|
2024-09-04 12:41:17 +02:00
|
|
|
|
(e -->β e') ->
|
2024-09-05 12:47:30 +02:00
|
|
|
|
(Γ |- e' \is τ)
|
2024-09-04 12:41:17 +02:00
|
|
|
|
.
|
|
|
|
|
Proof.
|
2024-09-19 07:01:31 +02:00
|
|
|
|
intros Γ e e' τ Typ Red.
|
|
|
|
|
generalize dependent e'.
|
|
|
|
|
induction Typ; intros e' Red.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is Variable *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- inversion Red.
|
|
|
|
|
|
|
|
|
|
(* `e` is Let *)
|
|
|
|
|
- inversion Red.
|
|
|
|
|
subst.
|
|
|
|
|
apply typing_subst with (σ:=σ).
|
|
|
|
|
auto.
|
|
|
|
|
auto.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is Type-Abstraction *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- inversion Red.
|
|
|
|
|
subst.
|
|
|
|
|
apply T_TypeAbs.
|
|
|
|
|
auto.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is Type-Application *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- inversion Red.
|
|
|
|
|
admit.
|
|
|
|
|
(*
|
|
|
|
|
apply typing_tsubst.
|
|
|
|
|
admit.
|
|
|
|
|
*)
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
2024-09-19 07:01:31 +02:00
|
|
|
|
(* `e` is abstraction *)
|
|
|
|
|
- inversion Red.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is morphism *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- inversion Red.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is Application *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- inversion Red.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
2024-09-19 07:01:31 +02:00
|
|
|
|
* apply T_App with (σ':=σ') (σ:=σ).
|
|
|
|
|
apply IHTyp1.
|
|
|
|
|
auto. auto. auto.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
2024-09-19 07:01:31 +02:00
|
|
|
|
* apply T_App with (σ':=σ') (σ:=σ).
|
|
|
|
|
auto using IHTyp2.
|
|
|
|
|
auto. auto.
|
|
|
|
|
|
|
|
|
|
* apply typing_subst with (σ:=σ').
|
|
|
|
|
subst.
|
|
|
|
|
admit.
|
|
|
|
|
auto.
|
|
|
|
|
|
|
|
|
|
* apply typing_subst with (σ:=σ').
|
|
|
|
|
admit.
|
|
|
|
|
auto.
|
|
|
|
|
|
|
|
|
|
(* `e` is Morphism *)
|
|
|
|
|
- auto using T_MorphFun.
|
|
|
|
|
|
|
|
|
|
(* `e` is Ascend *)
|
|
|
|
|
- admit.
|
|
|
|
|
(*
|
|
|
|
|
apply IHexpr_type.
|
|
|
|
|
inversion Red.
|
|
|
|
|
*)
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is Descension *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- intros.
|
|
|
|
|
apply T_DescendImplicit with (τ:=τ).
|
|
|
|
|
auto. auto.
|
|
|
|
|
|
|
|
|
|
(* `e` is descension *)
|
|
|
|
|
- apply T_DescendImplicit with (τ:=τ).
|
|
|
|
|
apply IHTyp.
|
|
|
|
|
admit.
|
|
|
|
|
auto.
|
2024-09-04 12:41:17 +02:00
|
|
|
|
Admitted.
|
|
|
|
|
|
2024-09-16 15:14:53 +02:00
|
|
|
|
(* translation of expression preserves typing *)
|
|
|
|
|
Lemma translation_preservation : forall Γ e e' τ,
|
|
|
|
|
(Γ |- e \is τ) ->
|
|
|
|
|
(translate_typing Γ e τ e') ->
|
|
|
|
|
(Γ |- e' \is τ)
|
|
|
|
|
.
|
|
|
|
|
Proof.
|
2024-09-19 07:01:31 +02:00
|
|
|
|
intros Γ e e' τ Typ Transl.
|
|
|
|
|
generalize dependent e'.
|
|
|
|
|
intros e' Transl.
|
|
|
|
|
induction Transl.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* e is Variable *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- apply H.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* e is Let-Binding *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- apply T_Let with (τ:=τ) (σ:=σ).
|
|
|
|
|
auto. auto.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- auto using T_TypeAbs.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* e is Type-Application *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- apply T_TypeApp.
|
|
|
|
|
admit.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- auto using T_Abs.
|
|
|
|
|
- auto using T_MorphAbs.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* e is Application *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- apply T_App with (σ':=σ) (σ:=σ) (τ:=τ).
|
|
|
|
|
auto.
|
|
|
|
|
apply T_App with (σ':=σ') (σ:=σ') (τ:=σ).
|
2024-09-16 15:14:53 +02:00
|
|
|
|
apply T_MorphFun.
|
|
|
|
|
apply morphism_path_solves_type.
|
2024-09-19 07:01:31 +02:00
|
|
|
|
auto. auto.
|
|
|
|
|
apply id_morphism_path.
|
|
|
|
|
apply id_morphism_path.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* e is Morphism *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- auto using T_MorphFun.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* e is Ascension *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- auto using T_Ascend.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* e is Desecension *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- apply T_Descend with (τ:=τ).
|
|
|
|
|
auto. auto.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
Admitted.
|
|
|
|
|
|
|
|
|
|
(* e is stuck when it is neither a value, nor can it be reduced *)
|
|
|
|
|
Definition is_stuck (e:expr_term) : Prop :=
|
|
|
|
|
~(is_value e) ->
|
|
|
|
|
~(exists e', e -->β e')
|
|
|
|
|
.
|
|
|
|
|
|
|
|
|
|
(* the translation any well typed term is not stuck *)
|
|
|
|
|
Lemma progress :
|
|
|
|
|
forall Γ e τ e',
|
|
|
|
|
(Γ |- e \is τ) ->
|
|
|
|
|
(translate_typing Γ e τ e') ->
|
|
|
|
|
~(is_stuck e')
|
|
|
|
|
.
|
|
|
|
|
Proof.
|
|
|
|
|
Admitted.
|
|
|
|
|
|
2024-09-19 07:01:31 +02:00
|
|
|
|
|
|
|
|
|
|
2024-09-16 15:14:53 +02:00
|
|
|
|
(* every well-typed expression is translated,
|
|
|
|
|
* such that it be reduced to a value
|
|
|
|
|
*)
|
2024-09-04 12:41:17 +02:00
|
|
|
|
Theorem soundness :
|
2024-09-16 15:14:53 +02:00
|
|
|
|
forall Γ e e' τ,
|
|
|
|
|
(Γ |- e \is τ) ->
|
|
|
|
|
(translate_typing Γ e τ e') ->
|
|
|
|
|
(exists v, (e' -->β* v) /\ (is_value v) /\ (Γ |- v \is τ))
|
2024-09-04 12:41:17 +02:00
|
|
|
|
.
|
|
|
|
|
Proof.
|
|
|
|
|
intros.
|
2024-09-19 07:01:31 +02:00
|
|
|
|
induction H0.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is Variable *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- exists (expr_var x).
|
|
|
|
|
split. apply Multi_Refl.
|
|
|
|
|
split. apply V_Abs,VAbs_Var.
|
|
|
|
|
apply H.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is Let-Binding *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- exists (expr_subst x e' t').
|
|
|
|
|
split.
|
|
|
|
|
apply Multi_Step with (y:=(expr_subst x e' t')).
|
|
|
|
|
apply E_Let with (x:=x) (a:=e') (e:=t').
|
|
|
|
|
apply Multi_Refl.
|
|
|
|
|
admit.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
(*
|
|
|
|
|
split.
|
|
|
|
|
unfold expr_subst.
|
|
|
|
|
induction t'.
|
2024-09-04 12:41:17 +02:00
|
|
|
|
|
2024-09-16 15:14:53 +02:00
|
|
|
|
exists (expr_subst x e' (expr_var s)).
|
|
|
|
|
split.
|
|
|
|
|
unfold expr_subst.
|
|
|
|
|
apply E_Let.
|
|
|
|
|
*)
|
|
|
|
|
|
|
|
|
|
(* `e` is Type-Abstraction *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- exists (expr_ty_abs α e').
|
|
|
|
|
split.
|
|
|
|
|
apply Multi_Refl.
|
|
|
|
|
split.
|
|
|
|
|
apply V_Abs, VAbs_TypAbs.
|
|
|
|
|
apply T_TypeAbs.
|
|
|
|
|
apply translation_preservation with (e:=e).
|
|
|
|
|
apply H0.
|
|
|
|
|
apply H1.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is Type-Application *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- admit.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e`is Abstraction *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- exists (expr_abs x σ e').
|
|
|
|
|
split. apply Multi_Refl.
|
|
|
|
|
split. apply V_Abs, VAbs_Abs.
|
|
|
|
|
apply T_Abs.
|
|
|
|
|
apply translation_preservation with (e:=e).
|
|
|
|
|
apply H0.
|
|
|
|
|
apply H2.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is Morphism Abstraction *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- exists (expr_morph x σ e').
|
|
|
|
|
split. apply Multi_Refl.
|
|
|
|
|
split. apply V_Abs, VAbs_Morph.
|
|
|
|
|
apply T_MorphAbs.
|
|
|
|
|
apply translation_preservation with (e:=e).
|
|
|
|
|
apply H0.
|
|
|
|
|
apply H2.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is Application *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- admit.
|
|
|
|
|
|
|
|
|
|
(* `e` is morphism *)
|
|
|
|
|
- admit.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is Ascension *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- admit.
|
2024-09-16 15:14:53 +02:00
|
|
|
|
|
|
|
|
|
(* `e` is Descension *)
|
2024-09-19 07:01:31 +02:00
|
|
|
|
- admit.
|
2024-09-04 12:41:17 +02:00
|
|
|
|
Admitted.
|
|
|
|
|
|