Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris
Manage
Activity
Members
Labels
Plan
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
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
Paolo G. Giarrusso
iris
Commits
6326a24c
Commit
6326a24c
authored
9 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
since we use unicode, let's write Löb's name correctly
parent
2d0a5475
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
modures/logic.v
+9
-1
9 additions, 1 deletion
modures/logic.v
with
9 additions
and
1 deletion
modures/logic.v
+
9
−
1
View file @
6326a24c
...
...
@@ -672,7 +672,7 @@ Proof.
intros
x
[|
n
]
??;
simpl
in
*
;
[
done
|]
.
apply
uPred_weaken
with
x
(
S
n
);
eauto
using
cmra_valid_S
.
Qed
.
Lemma
l
u
b
P
:
(
▷
P
→
P
)
⊑
P
.
Lemma
l
ö
b
P
:
(
▷
P
→
P
)
⊑
P
.
Proof
.
intros
x
n
?
HP
;
induction
n
as
[|
n
IH
];
[
by
apply
HP
|]
.
apply
HP
,
IH
,
uPred_weaken
with
x
(
S
n
);
eauto
using
cmra_valid_S
.
...
...
@@ -709,6 +709,14 @@ Proof.
Qed
.
Lemma
later_wand
P
Q
:
▷
(
P
-★
Q
)
⊑
(
▷
P
-★
▷
Q
)
.
Proof
.
apply
wand_intro_r
;
rewrite
-
later_sep
;
apply
later_mono
,
wand_elim_l
.
Qed
.
Lemma
löb_all_1
{
A
}
(
P
Q
:
A
→
uPred
M
)
:
(
∀
a
,
(
▷
(
∀
b
,
P
b
→
Q
b
)
∧
P
a
)
⊑
Q
a
)
→
∀
a
,
P
a
⊑
Q
a
.
Proof
.
intros
Hlöb
a
.
apply
impl_entails
.
transitivity
(
∀
a
,
P
a
→
Q
a
)
%
I
;
last
first
.
{
by
rewrite
(
forall_elim
_
a
)
.
}
clear
a
.
etransitivity
;
last
by
eapply
löb
.
apply
impl_intro_l
,
forall_intro
=>
a
.
rewrite
right_id
.
by
apply
impl_intro_r
.
Qed
.
(* Always *)
Lemma
always_const
φ
:
(
□
■
φ
:
uPred
M
)
%
I
≡
(
■
φ
)
%
I
.
...
...
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