From Undecidability.L Require Export L.
From Undecidability.L.Tactics Require Import Reflection ComputableTime mixedTactics.
From Undecidability.L.Tactics Require Import Reflection ComputableTime mixedTactics.
Symbolic simplification for L
Lproc
Hint Resolve rho_lambda rho_cls : LProc.
Lemma proc_closed p : proc p -> closed p.
Proof.
firstorder intuition.
Qed.
Lemma proc_lambda p : proc p -> lambda p.
Proof.
firstorder intuition.
Qed.
Ltac fLproc :=intros;
lazymatch goal with
| [ |- proc _ ] => split;fLproc
| [ |- lambda ?s ] => eexists; reflexivity || fail "Prooving 'lambda " s " ' by computation failed. It is either not a fixed term, some used identifier is opaqie or the goal does not hold"
| [ |- closed ?s ] => vm_compute; reflexivity || fail "Prooving 'closed " s " ' by computation failed. It is either not a fixed term, some used identifier is opaque or the goal does not hold"
end.
Ltac Lproc' :=
lazymatch goal with
| |- lambda (match ?c with _ => _ end) => destruct c;now repeat Lproc'
| |- lambda (@enc ?t ?H ?x) => exact (proc_lambda (@proc_enc t H x))
| |- lambda (@ext ?X ?tt ?x ?H) => exact (proc_lambda (@proc_ext X tt x H))
| |- lambda (@extT ?X ?tt ?x _ ?H) => exact (proc_lambda (@proc_extT X tt x _ H))
| |- lambda _ => (apply proc_lambda;(trivial with nocore LProc || tauto)) || tauto || (eexists;reflexivity)
| |- rClosed ?phi _ => solve [apply rClosed_decb_correct;[assumption|vm_compute;reflexivity]]
| |- L.closed _ => apply closed_dcl
| |- bound _ (match ?c with _ => _ end) => destruct c;now repeat Lproc'
| |- bound _ (L.var _) => solve [constructor;omega]
| |- bound _ (L.app _ _) => constructor
| |- bound _ (L.lam _) => constructor
| |- bound _ (rho ?s) => apply rho_dcls
| |- bound ?k (@ext ?X ?tt ?x ?H) =>
exact (closed_dcl_x k (proc_closed (@proc_ext X tt x H)))
| |- bound ?k (@extT ?X ?tt ?x _ ?H) =>
exact (closed_dcl_x k (proc_closed (@proc_extT X tt x _ H)))
| |- bound ?k (@enc ?t ?H ?x) =>
exact (closed_dcl_x k (proc_closed (@proc_enc t H x)))
| |- bound _ ?s => refine (closed_dcl_x _ _); (trivial with LProc || (apply proc_closed;trivial with LProc || tauto) || tauto )
end.
Ltac Lproc :=
lazymatch goal with
| |- proc (app _ _) => fail
| |- proc _ => split;[|now Lproc];Lproc
| |- closed _ => now (repeat Lproc')
| |- lambda (app _ _) => fail
| |- lambda _ => Lproc'
end.