Skip to content
Snippets Groups Projects
Commit 1f64552e authored by Felipe Cerqueira's avatar Felipe Cerqueira
Browse files

Add \In notation

parent 958bd3a5
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,11 @@ Reserved Notation "\cat_ ( i < n ) F"
Notation "\cat_ ( i < n ) F" :=
(\big[cat/[::]]_(i < n) F%N) : nat_scope.
Reserved Notation "x \In A"
(at level 70, format "'[hv' x '/ ' \In A ']'", no associativity).
Notation "x \In A" :=
(if A is Some B then in_mem x (mem B) else false) : bool_scope.
Ltac des_eqrefl2 :=
match goal with
......
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