Skip to content
Snippets Groups Projects
Commit 67db2f24 authored by Ralf Jung's avatar Ralf Jung
Browse files

add directional versions of not_elem_of_singleton

parent 63d07bb8
No related branches found
No related tags found
No related merge requests found
Pipeline #32395 canceled
...@@ -449,6 +449,10 @@ Section semi_set. ...@@ -449,6 +449,10 @@ Section semi_set.
Proof. set_solver. Qed. Proof. set_solver. Qed.
Lemma not_elem_of_singleton x y : x ({[ y ]} : C) x y. Lemma not_elem_of_singleton x y : x ({[ y ]} : C) x y.
Proof. by rewrite elem_of_singleton. Qed. Proof. by rewrite elem_of_singleton. Qed.
Lemma not_elem_of_singleton_1 x y : x ({[ y ]} : C) x y.
Proof. apply not_elem_of_singleton. Qed.
Lemma not_elem_of_singleton_2 x y : x y x ({[ y ]} : C).
Proof. apply not_elem_of_singleton. Qed.
(** Disjointness *) (** Disjointness *)
Lemma elem_of_disjoint X Y : X ## Y x, x X x Y False. Lemma elem_of_disjoint X Y : X ## Y x, x X x Y False.
......
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