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
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Jan
stdpp
Commits
d83e44a6
Commit
d83e44a6
authored
4 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Proper instance with `pointwise_relation` for `from_option`.
parent
ea934fb9
Branches
robbert/from_option
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/option.v
+7
-3
7 additions, 3 deletions
theories/option.v
with
7 additions
and
3 deletions
theories/option.v
+
7
−
3
View file @
d83e44a6
...
...
@@ -21,7 +21,7 @@ Proof. congruence. Qed.
(** The [from_option] is the eliminator for option. *)
Definition
from_option
{
A
B
}
(
f
:
A
→
B
)
(
y
:
B
)
(
mx
:
option
A
)
:
B
:=
match
mx
with
None
=>
y
|
Some
x
=>
f
x
end
.
Instance
:
Params
(
@
from_option
)
3
:=
{}
.
Instance
:
Params
(
@
from_option
)
2
:=
{}
.
Arguments
from_option
{_
_}
_
_
!
_
/
:
assert
.
(** The eliminator with the identity function. *)
...
...
@@ -145,8 +145,12 @@ Section setoids.
Global
Instance
is_Some_proper
:
Proper
((
≡@
{
option
A
})
==>
iff
)
is_Some
.
Proof
.
inversion_clear
1
;
split
;
eauto
.
Qed
.
Global
Instance
from_option_proper
{
B
}
(
R
:
relation
B
)
(
f
:
A
→
B
)
:
Proper
((
≡
)
==>
R
)
f
→
Proper
(
R
==>
(
≡
)
==>
R
)
(
from_option
f
)
.
Proof
.
destruct
3
;
simpl
;
auto
.
Qed
.
Proper
((
≡
)
==>
R
)
f
→
Proper
(
R
==>
(
≡
)
==>
R
)
(
from_option
f
)
.
Proof
.
solve_proper
.
Qed
.
Global
Instance
from_option_proper_ext
{
B
}
(
R
:
relation
B
)
:
Proper
(
pointwise_relation
A
R
==>
R
==>
(
=
)
==>
R
)
from_option
.
Proof
.
solve_proper
.
Qed
.
End
setoids
.
Typeclasses
Opaque
option_equiv
.
...
...
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