Library CoLoR.Term.Varyadic.VTerm
CoLoR, a Coq library on rewriting and termination.
See the COPYRIGHTS and LICENSE files.
- Frederic Blanqui, 2005-06-10
Set Implicit Arguments.
Require Import LogicUtil.
Require Import BoolUtil.
Require Export List.
Require Import ListUtil.
Require Import EqUtil.
Require Export VSignature.
Require Import Peano_dec.
Section S.
Variable Sig : Signature.
Inductive term : Type :=
| Var : variable -> term
| Fun : forall f : Sig, list term -> term.
Reset term_rect.
Notation terms := (list term).
induction principle
Section term_rect.
Variables
(P : term -> Type)
(Q : terms -> Type)
(H1 : forall x, P (Var x))
(H2 : forall f v, Q v -> P (Fun f v))
(H3 : Q nil)
(H4 : forall t v, P t -> Q v -> Q (t :: v)).
Fixpoint term_rect t : P t :=
match t as t return P t with
| Var x => H1 x
| Fun f v => H2 f
((fix vt_rect (v : terms) : Q v :=
match v as v return Q v with
| nil => H3
| cons t' v' => H4 (term_rect t') (vt_rect v')
end) v)
end.
End term_rect.
Definition term_ind (P : term -> Prop) (Q : terms -> Prop) := term_rect P Q.
Require Import ListForall.
Lemma term_ind_forall : forall (P : term -> Prop)
(H1 : forall x, P (Var x))
(H2 : forall f v, lforall P v -> P (Fun f v)),
forall t, P t.
Proof.
intros. apply term_ind with (Q := fun v => lforall P v).
assumption. assumption. constructor.
intros. apply lforall_intro. intros.
destruct H3. subst t0. assumption.
apply lforall_in with term v; assumption.
Qed.
Lemma term_ind_forall2 : forall (P : term -> Prop)
(H1 : forall x, P (Var x))
(H2 : forall f v, (forall t, In t v -> P t) -> P (Fun f v)),
forall t, P t.
Proof.
intros. apply term_ind with (Q := fun v => forall t, In t v -> P t); simpl.
assumption. assumption. intros. contradiction.
intros. destruct H3. subst. assumption. apply H0. assumption.
Qed.
Section term_rec_forall.
Variable term_eq_dec : forall t u : term, {t=u} + {t<>u}.
Lemma term_rect_forall : forall (P : term -> Type)
(H1 : forall x, P (Var x))
(H2 : forall f v, (forall t, Inb term_eq_dec t v = true -> P t) ->
P (Fun f v)),
forall t, P t.
Proof.
intros. apply term_rect with
(Q := fun v => forall t, Inb term_eq_dec t v = true -> P t); simpl.
assumption. assumption. intros. discriminate.
intros. destruct (term_eq_dec t1 t0). subst t1. assumption.
apply X0. assumption.
Qed.
End term_rec_forall.
equality
Lemma term_eq : forall f f' v v', f = f' -> v = v' -> Fun f v = Fun f' v'.
Proof.
intros. rewrite H. rewrite H0. refl.
Qed.
Lemma fun_eq : forall f f' v, f = f' -> Fun f v = Fun f' v.
Proof.
intros. rewrite H. refl.
Qed.
Lemma args_eq : forall f v v', v = v' -> Fun f v = Fun f v'.
Proof.
intros. rewrite H. refl.
Qed.
Lemma term_eq_dec : forall t u : term, {t = u} + {t <> u}.
Proof.
intro. pattern t. apply term_rect with
(Q := fun ts : terms => forall us, {ts=us} + {~ts=us}); clear t; intros.
destruct u.
destruct (eq_nat_dec x n).
intuition. right. congruence.
right. discriminate.
destruct u.
right. discriminate.
destruct (eq_symbol_dec f f0). destruct (X l).
left. congruence.
right. intro diff. apply n. congruence.
right. intro diff. apply n. congruence.
destruct us.
left. trivial.
right. discriminate.
destruct us.
right. discriminate.
destruct (X t0).
destruct (X0 us).
left. congruence.
right. intro diff. apply n. congruence.
right. intro diff. apply n. congruence.
Defined.
Section beq.
Variable beq_var : variable -> variable -> bool.
Variable beq_var_ok : forall x y, beq_var x y = true <-> x = y.
Variable beq_symb : Sig -> Sig -> bool.
Variable beq_symb_ok : forall f g, beq_symb f g = true <-> f = g.
Fixpoint beq (t u : term) {struct t} :=
match t with
| Var x =>
match u with
| Var y => beq_var x y
| _ => false
end
| Fun f ts =>
match u with
| Fun g us =>
let fix beq_terms (ts us : terms) {struct ts} :=
match ts with
| nil =>
match us with
| nil => true
| _ => false
end
| t :: ts' =>
match us with
| u :: us' => beq t u && beq_terms ts' us'
| _ => false
end
end
in beq_symb f g && beq_terms ts us
| _ => false
end
end.
Lemma beq_terms : forall ts us,
(fix beq_terms (ts us : terms) {struct ts} :=
match ts with
| nil =>
match us with
| nil => true
| _ => false
end
| t :: ts' =>
match us with
| u :: us' => beq t u && beq_terms ts' us'
| _ => false
end
end) ts us = beq_list beq ts us.
Proof.
induction ts; destruct us; refl.
Qed.
Lemma beq_fun : forall f ts g us,
beq (Fun f ts) (Fun g us) = beq_symb f g && beq_list beq ts us.
Proof.
intros. rewrite <- beq_terms. refl.
Qed.
Lemma beq_ok : forall t u, beq t u = true <-> t = u.
Proof.
intro t. pattern t. apply term_ind_forall2; destruct u.
simpl. rewrite beq_var_ok. intuition. inversion H. refl.
intuition; discriminate. intuition; discriminate.
rewrite beq_fun. split; intro. destruct (andb_elim H0).
rewrite beq_symb_ok in H1. subst f0.
rewrite beq_list_ok_in in H2. subst l. refl. exact H.
inversion H0. apply andb_intro. apply (beq_refl beq_symb_ok).
ded (beq_list_ok_in H). subst v. rewrite H1. refl.
Qed.
End beq.
maximal index of a variable
Require Import ListMax.
Fixpoint maxvar (t : term) : nat :=
match t with
| Var x => x
| Fun f v =>
let fix maxvars (v : terms) : nats :=
match v with
| nil => nil
| cons t' v' => cons (maxvar t') (maxvars v')
end
in lmax (maxvars v)
end.
Lemma maxvar_fun : forall f ts, maxvar (Fun f ts) = lmax (map maxvar ts).
Proof.
intros. simpl. apply (f_equal lmax).
induction ts. auto. rewrite IHts. auto.
Qed.
Lemma maxvar_var : forall k x, maxvar (Var x) <= k -> x <= k.
Proof.
intros. simpl. intuition.
Qed.
Definition maxvar_le k t := maxvar t <= k.
End S.
Implicit Arguments Var [Sig].
Implicit Arguments maxvar_var [Sig k x].
