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
Package Registry
Model registry
Operate
Terraform modules
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
Thibaut Pérami
stdpp
Commits
9128b1f7
Commit
9128b1f7
authored
3 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
`Params` instances for `curry` and friends.
parent
3590d853
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/base.v
+7
-0
7 additions, 0 deletions
theories/base.v
with
7 additions
and
0 deletions
theories/base.v
+
7
−
0
View file @
9128b1f7
...
...
@@ -675,17 +675,23 @@ Global Instance: Params (@snd) 2 := {}.
https://github.com/coq/coq/pull/12716/
FIXME: Remove this workaround once the lowest Coq version we support is 8.13. *)
Notation
curry
:=
prod_uncurry
.
Global
Instance
:
Params
(
@
curry
)
3
:=
{}
.
Notation
uncurry
:=
prod_curry
.
Global
Instance
:
Params
(
@
uncurry
)
3
:=
{}
.
Definition
uncurry3
{
A
B
C
D
}
(
f
:
A
→
B
→
C
→
D
)
(
p
:
A
*
B
*
C
)
:
D
:=
let
'
(
a
,
b
,
c
)
:=
p
in
f
a
b
c
.
Global
Instance
:
Params
(
@
uncurry3
)
4
:=
{}
.
Definition
uncurry4
{
A
B
C
D
E
}
(
f
:
A
→
B
→
C
→
D
→
E
)
(
p
:
A
*
B
*
C
*
D
)
:
E
:=
let
'
(
a
,
b
,
c
,
d
)
:=
p
in
f
a
b
c
d
.
Global
Instance
:
Params
(
@
uncurry4
)
5
:=
{}
.
Definition
curry3
{
A
B
C
D
}
(
f
:
A
*
B
*
C
→
D
)
(
a
:
A
)
(
b
:
B
)
(
c
:
C
)
:
D
:=
f
(
a
,
b
,
c
)
.
Global
Instance
:
Params
(
@
curry3
)
4
:=
{}
.
Definition
curry4
{
A
B
C
D
E
}
(
f
:
A
*
B
*
C
*
D
→
E
)
(
a
:
A
)
(
b
:
B
)
(
c
:
C
)
(
d
:
D
)
:
E
:=
f
(
a
,
b
,
c
,
d
)
.
Global
Instance
:
Params
(
@
curry4
)
5
:=
{}
.
Definition
prod_map
{
A
A'
B
B'
}
(
f
:
A
→
A'
)
(
g
:
B
→
B'
)
(
p
:
A
*
B
)
:
A'
*
B'
:=
(
f
(
p
.
1
),
g
(
p
.
2
))
.
...
...
@@ -710,6 +716,7 @@ Qed.
Definition
prod_relation
{
A
B
}
(
R1
:
relation
A
)
(
R2
:
relation
B
)
:
relation
(
A
*
B
)
:=
λ
x
y
,
R1
(
x
.
1
)
(
y
.
1
)
∧
R2
(
x
.
2
)
(
y
.
2
)
.
Section
prod_relation
.
Context
`{
R1
:
relation
A
,
R2
:
relation
B
}
.
Global
Instance
prod_relation_refl
:
...
...
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