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

Rename set_Forall_weaken → set_Forall_impl.

To make it consistent with Forall_impl and map_Forall_impl. Also, put
the premises in the same order as those lemmas.
parent 84719674
No related branches found
No related tags found
No related merge requests found
......@@ -820,11 +820,11 @@ End quantifiers.
Section more_quantifiers.
Context `{SimpleCollection A B}.
Lemma set_Forall_weaken (P Q : A Prop) (Hweaken : x, P x Q x) X :
set_Forall P X set_Forall Q X.
Lemma set_Forall_impl (P Q : A Prop) X :
set_Forall P X ( x, P x Q x) set_Forall Q X.
Proof. unfold set_Forall. naive_solver. Qed.
Lemma set_Exists_weaken (P Q : A Prop) (Hweaken : x, P x Q x) X :
set_Exists P X set_Exists Q X.
Lemma set_Exists_impl (P Q : A Prop) X :
set_Exists P X ( x, P x Q x) set_Exists Q X.
Proof. unfold set_Exists. naive_solver. Qed.
End more_quantifiers.
......
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