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

ASCII notation for negation in bi_scope.

parent 2c2565ac
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,8 @@ Notation "(/\)" := bi_and (only parsing) : bi_scope.
Notation "P \/ Q" := (P Q)%I (only parsing) : bi_scope.
Notation "(\/)" := bi_or (only parsing) : bi_scope.
Notation "P -> Q" := (P Q)%I (only parsing) : bi_scope.
Notation "~ P" := (P False)%I (only parsing) : bi_scope.
Notation "P ** Q" := (P Q)%I
(at level 80, right associativity, only parsing) : bi_scope.
Notation "(**)" := bi_sep (only parsing) : bi_scope.
......
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