Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Numerical Analysis in Coq
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Micaela Mayero
Numerical Analysis in Coq
Commits
16aa24fa
Commit
16aa24fa
authored
2 years ago
by
François Clément
Browse files
Options
Downloads
Patches
Plain Diff
Add compose3.
parent
0894af5c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Lebesgue/Set_theory/Set_def_fun_base.v
+15
-3
15 additions, 3 deletions
Lebesgue/Set_theory/Set_def_fun_base.v
with
15 additions
and
3 deletions
Lebesgue/Set_theory/Set_def_fun_base.v
+
15
−
3
View file @
16aa24fa
...
...
@@ -37,7 +37,7 @@ Definition bijective_alt : Prop := forall x2, exists! x1, f x1 = x2.
End
Fun_Base_Def1
.
Section
Fun_Base_Def2
.
Section
Fun_Base_Def2
a
.
Context
{
U1
U2
U3
:
Type
}
.
(
*
Universes
.
*
)
Variable
f23
:
U2
->
U3
.
...
...
@@ -45,7 +45,19 @@ Variable f12 : U1 -> U2.
Definition
compose
:
U1
->
U3
:=
fun
x1
=>
f23
(
f12
x1
).
End
Fun_Base_Def2
.
End
Fun_Base_Def2a
.
Section
Fun_Base_Def2b
.
Context
{
U1
U2
U3
U4
:
Type
}
.
(
*
Universes
.
*
)
Variable
f34
:
U3
->
U4
.
Variable
f23
:
U2
->
U3
.
Variable
f12
:
U1
->
U2
.
Definition
compose3
:
U1
->
U4
:=
compose
f34
(
compose
f23
f12
).
End
Fun_Base_Def2b
.
Section
Fun_Base_Def3
.
...
...
@@ -157,7 +169,7 @@ End Fun_Base_Facts2.
Ltac
fun_unfold
:=
repeat
unfold
bijective
,
surjective
,
injective_alt
,
injective
,
same_fun
,
(
*
Predicate
.
*
)
compose
,
preimage
,
image_ex
.
(
*
Operators
.
*
)
compose3
,
compose
,
preimage
,
image_ex
.
(
*
Operators
.
*
)
Ltac
fun_auto
:=
fun_unfold
;
set_auto
.
...
...
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