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
57c98ce1
Commit
57c98ce1
authored
4 years ago
by
Alix Trieu
Browse files
Options
Downloads
Patches
Plain Diff
Apply Robbert's suggestions
parent
57a1a207
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!238
surjective_finite
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/finite.v
+6
-5
6 additions, 5 deletions
theories/finite.v
with
6 additions
and
5 deletions
theories/finite.v
+
6
−
5
View file @
57c98ce1
...
@@ -224,11 +224,12 @@ Section surjective_finite.
...
@@ -224,11 +224,12 @@ Section surjective_finite.
Context
`{
Finite
A
,
EqDecision
B
}
(
f
:
A
→
B
)
.
Context
`{
Finite
A
,
EqDecision
B
}
(
f
:
A
→
B
)
.
Context
`{
!
Surj
(
=
)
f
}
.
Context
`{
!
Surj
(
=
)
f
}
.
Program
Instance
surjective_finite
:
Finite
B
:=
{|
enum
:=
remove_dups
(
f
<$>
enum
A
)
|}
.
Program
Instance
surjective_finite
:
Finite
B
:=
{|
enum
:=
remove_dups
(
f
<$>
enum
A
)
|}
.
Next
Obligation
.
apply
NoDup_remove_dups
.
Qed
.
Next
Obligation
.
apply
NoDup_remove_dups
.
Qed
.
Next
Obligation
.
Next
Obligation
.
intros
y
.
rewrite
elem_of_remove_dups
,
elem_of_list_fmap
.
intros
y
.
rewrite
elem_of_remove_dups
,
elem_of_list_fmap
.
destruct
(
S
urj
0
y
)
.
eauto
using
elem_of_enum
.
destruct
(
s
urj
f
y
)
.
eauto
using
elem_of_enum
.
Qed
.
Qed
.
End
surjective_finite
.
End
surjective_finite
.
...
@@ -236,9 +237,9 @@ Section bijective_finite.
...
@@ -236,9 +237,9 @@ Section bijective_finite.
Context
`{
Finite
A
,
EqDecision
B
}
(
f
:
A
→
B
)
(
g
:
B
→
A
)
.
Context
`{
Finite
A
,
EqDecision
B
}
(
f
:
A
→
B
)
(
g
:
B
→
A
)
.
Context
`{
!
Inj
(
=
)
(
=
)
f
,
!
Cancel
(
=
)
f
g
}
.
Context
`{
!
Inj
(
=
)
(
=
)
f
,
!
Cancel
(
=
)
f
g
}
.
Program
Instance
bijective_finite
:
Finite
B
:=
_
.
Global
Instance
bijective_finite
:
Finite
B
:=
Next
Obligation
.
eapply
surjective_finite
.
eapply
cancel_surj
.
let
_
:=
cancel_surj
(
f
:=
f
)
(
g
:=
g
)
in
Unshelve
.
all
:
eapply
_
.
Qed
.
surjective_finite
f
.
End
bijective_finite
.
End
bijective_finite
.
Program
Instance
option_finite
`{
Finite
A
}
:
Finite
(
option
A
)
:=
Program
Instance
option_finite
`{
Finite
A
}
:
Finite
(
option
A
)
:=
...
...
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