Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Iris
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
Package Registry
Model registry
Operate
Terraform modules
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
Simcha van Collem
Iris
Commits
56321b0f
Commit
56321b0f
authored
7 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Remove `⌜φ⌝ ⊢ □ ⌜φ⌝` as a primitive rule, it can be derived.
parent
381e8509
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
theories/base_logic/derived.v
+6
-1
6 additions, 1 deletion
theories/base_logic/derived.v
theories/base_logic/primitive.v
+0
-2
0 additions, 2 deletions
theories/base_logic/primitive.v
with
6 additions
and
3 deletions
theories/base_logic/derived.v
+
6
−
1
View file @
56321b0f
...
...
@@ -483,7 +483,12 @@ Lemma always_idemp P : □ □ P ⊣⊢ □ P.
Proof
.
apply
(
anti_symm
_);
auto
using
always_idemp_2
.
Qed
.
Lemma
always_pure
φ
:
□
⌜
φ
⌝
⊣⊢
⌜
φ
⌝.
Proof
.
apply
(
anti_symm
_);
auto
using
always_pure_2
.
Qed
.
Proof
.
apply
(
anti_symm
_);
auto
.
apply
pure_elim'
=>
Hφ
.
trans
(
∀
x
:
False
,
□
True
:
uPred
M
)
%
I
;
[
by
apply
forall_intro
|]
.
rewrite
always_forall_2
.
auto
using
always_mono
,
pure_intro
.
Qed
.
Lemma
always_forall
{
A
}
(
Ψ
:
A
→
uPred
M
)
:
(
□
∀
a
,
Ψ
a
)
⊣⊢
(
∀
a
,
□
Ψ
a
)
.
Proof
.
apply
(
anti_symm
_);
auto
using
always_forall_2
.
...
...
This diff is collapsed.
Click to expand it.
theories/base_logic/primitive.v
+
0
−
2
View file @
56321b0f
...
...
@@ -430,8 +430,6 @@ Qed.
Lemma
always_idemp_2
P
:
□
P
⊢
□
□
P
.
Proof
.
unseal
;
split
=>
n
x
??
/=.
by
rewrite
cmra_core_idemp
.
Qed
.
Lemma
always_pure_2
φ
:
⌜
φ
⌝
⊢
□
⌜
φ
⌝.
Proof
.
by
unseal
.
Qed
.
Lemma
always_forall_2
{
A
}
(
Ψ
:
A
→
uPred
M
)
:
(
∀
a
,
□
Ψ
a
)
⊢
(
□
∀
a
,
Ψ
a
)
.
Proof
.
by
unseal
.
Qed
.
Lemma
always_exist_1
{
A
}
(
Ψ
:
A
→
uPred
M
)
:
(
□
∃
a
,
Ψ
a
)
⊢
(
∃
a
,
□
Ψ
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