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
445003cc
Commit
445003cc
authored
8 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
fix naming
parent
9d661288
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
theories/proofmode/class_instances.v
+4
-4
4 additions, 4 deletions
theories/proofmode/class_instances.v
with
4 additions
and
4 deletions
theories/proofmode/class_instances.v
+
4
−
4
View file @
445003cc
...
...
@@ -43,13 +43,13 @@ Global Instance into_pure_cmra_valid `{CMRADiscrete A} (a : A) :
@
IntoPure
M
(
✓
a
)
(
✓
a
)
.
Proof
.
by
rewrite
/
IntoPure
discrete_valid
.
Qed
.
Global
Instance
into_pure_pure_
conj
(
φ1
φ2
:
Prop
)
P1
P2
:
Global
Instance
into_pure_pure_
and
(
φ1
φ2
:
Prop
)
P1
P2
:
IntoPure
P1
φ1
->
IntoPure
P2
φ2
->
IntoPure
(
P1
∧
P2
)
(
φ1
∧
φ2
)
.
Proof
.
rewrite
/
IntoPure
pure_and
.
by
intros
->
->
.
Qed
.
Global
Instance
into_pure_pure_sep
(
φ1
φ2
:
Prop
)
P1
P2
:
IntoPure
P1
φ1
->
IntoPure
P2
φ2
->
IntoPure
(
P1
∗
P2
)
(
φ1
∧
φ2
)
.
Proof
.
rewrite
/
IntoPure
sep_and
pure_and
.
by
intros
->
->
.
Qed
.
Global
Instance
into_pure_pure_
disj
(
φ1
φ2
:
Prop
)
P1
P2
:
Global
Instance
into_pure_pure_
or
(
φ1
φ2
:
Prop
)
P1
P2
:
IntoPure
P1
φ1
->
IntoPure
P2
φ2
->
IntoPure
(
P1
∨
P2
)
(
φ1
∨
φ2
)
.
Proof
.
rewrite
/
IntoPure
pure_or
.
by
intros
->
->
.
Qed
.
Global
Instance
into_pure_pure_impl
(
φ1
φ2
:
Prop
)
P1
P2
:
...
...
@@ -91,13 +91,13 @@ Qed.
Global
Instance
from_pure_bupd
P
φ
:
FromPure
P
φ
→
FromPure
(|
==>
P
)
φ
.
Proof
.
rewrite
/
FromPure
=>
->
.
apply
bupd_intro
.
Qed
.
Global
Instance
from_pure_pure_
conj
(
φ1
φ2
:
Prop
)
P1
P2
:
Global
Instance
from_pure_pure_
and
(
φ1
φ2
:
Prop
)
P1
P2
:
FromPure
P1
φ1
->
FromPure
P2
φ2
->
FromPure
(
P1
∧
P2
)
(
φ1
∧
φ2
)
.
Proof
.
rewrite
/
FromPure
pure_and
.
by
intros
->
->
.
Qed
.
Global
Instance
from_pure_pure_sep
(
φ1
φ2
:
Prop
)
P1
P2
:
FromPure
P1
φ1
->
FromPure
P2
φ2
->
FromPure
(
P1
∗
P2
)
(
φ1
∧
φ2
)
.
Proof
.
rewrite
/
FromPure
pure_and
always_and_sep_l
.
by
intros
->
->
.
Qed
.
Global
Instance
from_pure_pure_
disj
(
φ1
φ2
:
Prop
)
P1
P2
:
Global
Instance
from_pure_pure_
or
(
φ1
φ2
:
Prop
)
P1
P2
:
FromPure
P1
φ1
->
FromPure
P2
φ2
->
FromPure
(
P1
∨
P2
)
(
φ1
∨
φ2
)
.
Proof
.
rewrite
/
FromPure
pure_or
.
by
intros
->
->
.
Qed
.
Global
Instance
from_pure_pure_impl
(
φ1
φ2
:
Prop
)
P1
P2
:
...
...
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