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

Use unicode not for mkSet_not_elem_of.

parent c7995ce7
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ 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.
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 ]}.
......
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