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
Gaëtan Gilbert
Iris
Commits
0b908b36
Commit
0b908b36
authored
8 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Some missing unicode arrows.
parent
dc9135cb
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/proofmode/class_instances.v
+5
-5
5 additions, 5 deletions
theories/proofmode/class_instances.v
with
5 additions
and
5 deletions
theories/proofmode/class_instances.v
+
5
−
5
View file @
0b908b36
...
...
@@ -94,19 +94,19 @@ Global Instance from_pure_bupd P φ : FromPure P φ → FromPure (|==> P) φ.
Proof
.
rewrite
/
FromPure
=>
->
.
apply
bupd_intro
.
Qed
.
Global
Instance
from_pure_pure_and
(
φ1
φ2
:
Prop
)
P1
P2
:
FromPure
P1
φ1
->
FromPure
P2
φ2
->
FromPure
(
P1
∧
P2
)
(
φ1
∧
φ2
)
.
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
)
.
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_or
(
φ1
φ2
:
Prop
)
P1
P2
:
FromPure
P1
φ1
->
FromPure
P2
φ2
->
FromPure
(
P1
∨
P2
)
(
φ1
∨
φ2
)
.
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
:
IntoPure
P1
φ1
->
FromPure
P2
φ2
->
FromPure
(
P1
→
P2
)
(
φ1
→
φ2
)
.
IntoPure
P1
φ1
→
FromPure
P2
φ2
→
FromPure
(
P1
→
P2
)
(
φ1
→
φ2
)
.
Proof
.
rewrite
/
FromPure
/
IntoPure
pure_impl
.
by
intros
->
->
.
Qed
.
Global
Instance
from_pure_pure_wand
(
φ1
φ2
:
Prop
)
P1
P2
:
IntoPure
P1
φ1
->
FromPure
P2
φ2
->
FromPure
(
P1
-∗
P2
)
(
φ1
→
φ2
)
.
IntoPure
P1
φ1
→
FromPure
P2
φ2
→
FromPure
(
P1
-∗
P2
)
(
φ1
→
φ2
)
.
Proof
.
rewrite
/
FromPure
/
IntoPure
pure_impl
always_impl_wand
.
by
intros
->
->
.
Qed
.
...
...
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