Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stdpp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Iris
stdpp
Merge requests
!152
notation for forall
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
notation for forall
gmalecha/stdpp:forall-notation
into
master
Overview
14
Commits
3
Pipelines
0
Changes
1
All threads resolved!
Show all comments
Merged
Gregory Malecha
requested to merge
gmalecha/stdpp:forall-notation
into
master
4 years ago
Overview
14
Commits
3
Pipelines
0
Changes
1
All threads resolved!
Show all comments
Expand
0
0
Merge request reports
Compare
version 4
version 5
d6e17147
4 years ago
version 4
ce0d7b02
4 years ago
version 3
418937aa
4 years ago
version 2
5831014b
4 years ago
version 1
c38e4f4f
4 years ago
master (base)
and
version 5
latest version
7b7b163f
3 commits,
4 years ago
version 5
d6e17147
2 commits,
4 years ago
version 4
ce0d7b02
1 commit,
4 years ago
version 3
418937aa
2 commits,
4 years ago
version 2
5831014b
1 commit,
4 years ago
version 1
c38e4f4f
1 commit,
4 years ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
theories/base.v
+
5
−
0
Options
@@ -186,4+186,4 @@
(** Change [True] and [False] into notations in order to enable overloading.
We will use this to give [True] and [False] a different interpretation for
embedded logics. *)
Notation
"'True'"
:=
True
(
format
"True"
)
:
type_scope
.
Notation
"'False'"
:=
False
(
format
"False"
)
:
type_scope
.
(** Change [forall] into a notation in order to enable overloading. *)
Notation
"'forall' x .. y , P"
:=
(
forall
x
,
.
.
(
forall
y
,
P
%
type
)
..)
(
at
level
200
,
x
binder
,
y
binder
,
right
associativity
,
only
parsing
)
:
type_scope
.
(** * Equality *)
(** Introduce some Haskell style like notations. *)
Loading