Library Coq.Structures.OrdersLists
Module OrderedTypeLists (O:OrderedType).
Local Notation In:=(InA O.eq).
Local Notation Inf:=(lelistA O.lt).
Local Notation Sort:=(sort O.lt).
Local Notation NoDup:=(NoDupA O.eq).
Lemma In_eq : forall l x y, eq x y -> In x l -> In y l.
Lemma ListIn_In : forall l x, List.In x l -> In x l.
Lemma Inf_lt : forall l x y, O.lt x y -> Inf y l -> Inf x l.
Lemma Inf_eq : forall l x y, O.eq x y -> Inf y l -> Inf x l.
Lemma Sort_Inf_In : forall l x a, Sort l -> Inf a l -> In x l -> O.lt a x.
Lemma ListIn_Inf : forall l x, (forall y, List.In y l -> O.lt x y) -> Inf x l.
Lemma In_Inf : forall l x, (forall y, In y l -> O.lt x y) -> Inf x l.
Lemma Inf_alt :
forall l x, Sort l -> (Inf x l <-> (forall y, In y l -> O.lt x y)).
Lemma Sort_NoDup : forall l, Sort l -> NoDup l.
#[global]
Hint Resolve ListIn_In Sort_NoDup Inf_lt : core.
#[global]
Hint Immediate In_eq Inf_lt : core.
End OrderedTypeLists.
Module KeyOrderedType(O:OrderedType).
Include KeyDecidableType(O).
Local Notation key:=O.t.
Local Open Scope signature_scope.
Definition ltk {elt} : relation (key*elt) := O.lt @@1.
#[global]
Hint Unfold ltk : core.
#[global]
Instance ltk_strorder {elt} : StrictOrder (@ltk elt) := _.
#[global]
Instance ltk_compat {elt} : Proper (eqk==>eqk==>iff) (@ltk elt).
#[global]
Instance ltk_compat' {elt} : Proper (eqke==>eqke==>iff) (@ltk elt).
#[global]
Instance pair_compat {elt} : Proper (O.eq==>Logic.eq==>eqke) (@pair key elt).
Section Elt.
Variable elt : Type.
Implicit Type p q : key*elt.
Implicit Type l m : list (key*elt).
Lemma ltk_not_eqk p q : ltk p q -> ~ eqk p q.
Lemma ltk_not_eqke p q : ltk p q -> ~eqke p q.
Notation Sort := (sort ltk).
Notation Inf := (lelistA ltk).
Lemma Inf_eq l x x' : eqk x x' -> Inf x' l -> Inf x l.
Lemma Inf_lt l x x' : ltk x x' -> Inf x' l -> Inf x l.
#[local]
Hint Immediate Inf_eq : core.
#[local]
Hint Resolve Inf_lt : core.
Lemma Sort_Inf_In l p q : Sort l -> Inf q l -> InA eqk p l -> ltk q p.
Lemma Sort_Inf_NotIn l k e : Sort l -> Inf (k,e) l -> ~In k l.
Lemma Sort_NoDupA l : Sort l -> NoDupA eqk l.
Lemma Sort_In_cons_1 l p q : Sort (p::l) -> InA eqk q l -> ltk p q.
Lemma Sort_In_cons_2 l p q : Sort (p::l) -> InA eqk q (p::l) ->
ltk p q \/ eqk p q.
Lemma Sort_In_cons_3 x l k e :
Sort ((k,e)::l) -> In x l -> ~O.eq x k.
End Elt.
#[global]
Hint Resolve ltk_not_eqk ltk_not_eqke : core.
#[global]
Hint Immediate Inf_eq : core.
#[global]
Hint Resolve Inf_lt : core.
#[global]
Hint Resolve Sort_Inf_NotIn : core.
End KeyOrderedType.