Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Rice Wine
Iris
Commits
ab1632d3
Commit
ab1632d3
authored
Oct 27, 2016
by
Ralf Jung
Browse files
repeat notation annotations for quantifiers, just to be sure
parent
679d06d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
base_logic/primitive.v
View file @
ab1632d3
...
...
@@ -171,9 +171,11 @@ Notation "(★)" := uPred_sep (only parsing) : uPred_scope.
Notation
"P -★ Q"
:
=
(
uPred_wand
P
Q
)
(
at
level
99
,
Q
at
level
200
,
right
associativity
)
:
uPred_scope
.
Notation
"∀ x .. y , P"
:
=
(
uPred_forall
(
λ
x
,
..
(
uPred_forall
(
λ
y
,
P
))
..)%
I
)
:
uPred_scope
.
(
uPred_forall
(
λ
x
,
..
(
uPred_forall
(
λ
y
,
P
))
..)%
I
)
(
at
level
200
,
x
binder
,
y
binder
,
right
associativity
)
:
uPred_scope
.
Notation
"∃ x .. y , P"
:
=
(
uPred_exist
(
λ
x
,
..
(
uPred_exist
(
λ
y
,
P
))
..)%
I
)
:
uPred_scope
.
(
uPred_exist
(
λ
x
,
..
(
uPred_exist
(
λ
y
,
P
))
..)%
I
)
(
at
level
200
,
x
binder
,
y
binder
,
right
associativity
)
:
uPred_scope
.
Notation
"□ P"
:
=
(
uPred_always
P
)
(
at
level
20
,
right
associativity
)
:
uPred_scope
.
Notation
"▷ P"
:
=
(
uPred_later
P
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment