Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Iris
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.
...
@@ -171,9 +171,11 @@ Notation "(★)" := uPred_sep (only parsing) : uPred_scope.
Notation
"P -★ Q"
:
=
(
uPred_wand
P
Q
)
Notation
"P -★ Q"
:
=
(
uPred_wand
P
Q
)
(
at
level
99
,
Q
at
level
200
,
right
associativity
)
:
uPred_scope
.
(
at
level
99
,
Q
at
level
200
,
right
associativity
)
:
uPred_scope
.
Notation
"∀ x .. y , P"
:
=
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"
:
=
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
)
Notation
"□ P"
:
=
(
uPred_always
P
)
(
at
level
20
,
right
associativity
)
:
uPred_scope
.
(
at
level
20
,
right
associativity
)
:
uPred_scope
.
Notation
"▷ P"
:
=
(
uPred_later
P
)
Notation
"▷ P"
:
=
(
uPred_later
P
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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