Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Iris
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
Model registry
Operate
Environments
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
Abhishek Anand
Iris
Commits
599c70e1
Commit
599c70e1
authored
8 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
a little theory about limit preservation
parent
a09a8247
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
theories/algebra/ofe.v
+15
-0
15 additions, 0 deletions
theories/algebra/ofe.v
with
15 additions
and
0 deletions
theories/algebra/ofe.v
+
15
−
0
View file @
599c70e1
...
@@ -959,6 +959,21 @@ Qed.
...
@@ -959,6 +959,21 @@ Qed.
Class
LimitPreserving
`{
!
Cofe
A
}
(
P
:
A
→
Prop
)
:
Prop
:=
Class
LimitPreserving
`{
!
Cofe
A
}
(
P
:
A
→
Prop
)
:
Prop
:=
limit_preserving
:
∀
c
:
chain
A
,
(
∀
n
,
P
(
c
n
))
→
P
(
compl
c
)
.
limit_preserving
:
∀
c
:
chain
A
,
(
∀
n
,
P
(
c
n
))
→
P
(
compl
c
)
.
Section
limit_preserving
.
Context
{
A
:
ofeT
}
`{
!
Cofe
A
}
.
(* These are not instances as they will never fire automatically...
but they can still be helpful in proving things to be limit preserving. *)
Lemma
limit_preserving_and
(
P1
P2
:
A
→
Prop
)
:
LimitPreserving
P1
→
LimitPreserving
P2
→
LimitPreserving
(
λ
x
,
P1
x
∧
P2
x
)
.
Proof
.
intros
Hlim1
Hlim2
c
Hc
.
split
.
-
apply
Hlim1
,
Hc
.
-
apply
Hlim2
,
Hc
.
Qed
.
End
limit_preserving
.
Section
sigma
.
Section
sigma
.
Context
{
A
:
ofeT
}
{
P
:
A
→
Prop
}
.
Context
{
A
:
ofeT
}
{
P
:
A
→
Prop
}
.
...
...
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