Skip to content
Snippets Groups Projects
Commit 646e26fa authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Add `valid_entails` to lift `✓{n}` entailments into `uPred`.

parent 3d73e1ff
No related branches found
No related tags found
No related merge requests found
...@@ -197,7 +197,7 @@ Lemma bupd_ownM_updateP x (Φ : M → Prop) : ...@@ -197,7 +197,7 @@ Lemma bupd_ownM_updateP x (Φ : M → Prop) :
x ~~>: Φ uPred_ownM x |==> y, Φ y uPred_ownM y. x ~~>: Φ uPred_ownM x |==> y, Φ y uPred_ownM y.
Proof. exact: uPred_primitive.bupd_ownM_updateP. Qed. Proof. exact: uPred_primitive.bupd_ownM_updateP. Qed.
(* This is really just a special case of an entailment (** This is really just a special case of an entailment
between two [siProp], but we do not have the infrastructure between two [siProp], but we do not have the infrastructure
to express the more general case. This temporary proof rule will to express the more general case. This temporary proof rule will
be replaced by the proper one eventually. *) be replaced by the proper one eventually. *)
...@@ -225,6 +225,14 @@ Proof. exact: uPred_primitive.discrete_valid. Qed. ...@@ -225,6 +225,14 @@ Proof. exact: uPred_primitive.discrete_valid. Qed.
Lemma discrete_fun_validI {A} {B : A ucmraT} (g : discrete_fun B) : g ⊣⊢ i, g i. Lemma discrete_fun_validI {A} {B : A ucmraT} (g : discrete_fun B) : g ⊣⊢ i, g i.
Proof. exact: uPred_primitive.discrete_fun_validI. Qed. Proof. exact: uPred_primitive.discrete_fun_validI. Qed.
(** This is really just a special case of an entailment
between two [siProp], but we do not have the infrastructure
to express the more general case. This temporary proof rule will
be replaced by the proper one eventually. *)
Lemma valid_entails {A B : cmraT} (a : A) (b : B) :
( n, {n} a {n} b) a b.
Proof. exact: uPred_primitive.valid_entails. Qed.
(** Consistency/soundness statement *) (** Consistency/soundness statement *)
Lemma pure_soundness φ : (⊢@{uPredI M} φ ) φ. Lemma pure_soundness φ : (⊢@{uPredI M} φ ) φ.
Proof. apply pure_soundness. Qed. Proof. apply pure_soundness. Qed.
......
...@@ -720,7 +720,7 @@ Proof. ...@@ -720,7 +720,7 @@ Proof.
unseal=> ?. split=> n x ?. by apply (discrete_iff n). unseal=> ?. split=> n x ?. by apply (discrete_iff n).
Qed. Qed.
(* This is really just a special case of an entailment (** This is really just a special case of an entailment
between two [siProp], but we do not have the infrastructure between two [siProp], but we do not have the infrastructure
to express the more general case. This temporary proof rule will to express the more general case. This temporary proof rule will
be replaced by the proper one eventually. *) be replaced by the proper one eventually. *)
...@@ -818,6 +818,14 @@ Proof. unseal; split=> n x _. by rewrite /= -cmra_discrete_valid_iff. Qed. ...@@ -818,6 +818,14 @@ Proof. unseal; split=> n x _. by rewrite /= -cmra_discrete_valid_iff. Qed.
Lemma discrete_fun_validI {A} {B : A ucmraT} (g : discrete_fun B) : g ⊣⊢ i, g i. Lemma discrete_fun_validI {A} {B : A ucmraT} (g : discrete_fun B) : g ⊣⊢ i, g i.
Proof. by unseal. Qed. Proof. by unseal. Qed.
(** This is really just a special case of an entailment
between two [siProp], but we do not have the infrastructure
to express the more general case. This temporary proof rule will
be replaced by the proper one eventually. *)
Lemma valid_entails {A B : cmraT} (a : A) (b : B) :
( n, {n} a {n} b) a b.
Proof. unseal=> Hval. split=>n x ?. apply Hval. Qed.
(** Consistency/soundness statement *) (** Consistency/soundness statement *)
(** The lemmas [pure_soundness] and [internal_eq_soundness] should become an (** The lemmas [pure_soundness] and [internal_eq_soundness] should become an
instance of [siProp] soundness in the future. *) instance of [siProp] soundness in the future. *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment