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

we also need to go below mkSet for \notin

parent 60e1e123
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,8 @@ Proof. by split; [split | |]; repeat intro. Qed.
Lemma mkSet_elem_of {A} (f : A Prop) x : f x x mkSet f.
Proof. done. Qed.
Lemma mkSet_not_elem_of {A} (f : A Prop) x : ~f x x mkSet f.
Proof. done. Qed.
Instance set_ret : MRet set := λ A (x : A), {[ x ]}.
Instance set_bind : MBind set := λ A B (f : A set B) (X : set A),
......
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