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
Commits
888dbdc9
Commit
888dbdc9
authored
1 year ago
by
Pierre Roux
Browse files
Options
Downloads
Patches
Plain Diff
Adapt to
https://github.com/coq/coq/pull/18224
parent
8c98553a
No related branches found
No related tags found
1 merge request
!536
Adapt to https://github.com/coq/coq/pull/18224
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
stdpp/base.v
+6
-2
6 additions, 2 deletions
stdpp/base.v
with
6 additions
and
2 deletions
stdpp/base.v
+
6
−
2
View file @
888dbdc9
...
...
@@ -12,6 +12,10 @@ From Coq Require Export Morphisms RelationClasses List Bool Setoid Peano Utf8.
From
Coq
Require
Import
Permutation
.
Export
ListNotations
.
From
Coq
.
Program
Require
Export
Basics
Syntax
.
(* notations _.1 and _.2 below, TODO: remove when requiring Coq > 8.19 *)
From
Coq
.
ssr
Require
Import
(
notations
)
ssrfun
.
From
stdpp
Require
Import
options
.
(** This notation is necessary to prevent [length] from being printed
...
...
@@ -722,8 +726,8 @@ Proof. intros [] []; reflexivity. Qed.
Notation
"( x ,.)"
:=
(
pair
x
)
(
only
parsing
)
:
stdpp_scope
.
Notation
"(., y )"
:=
(
λ
x
,
(
x
,
y
))
(
only
parsing
)
:
stdpp_scope
.
Notation
"p .1"
:=
(
fst
p
)
(
at
level
2
,
left
associativity
,
format
"p .1"
)
.
Notation
"p .2"
:=
(
snd
p
)
(
at
level
2
,
left
associativity
,
format
"p .2"
)
.
Notation
"p .1"
:=
(
fst
p
)
.
Notation
"p .2"
:=
(
snd
p
)
.
Global
Instance
:
Params
(
@
pair
)
2
:=
{}
.
Global
Instance
:
Params
(
@
fst
)
2
:=
{}
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment