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
191a6f43
Commit
191a6f43
authored
6 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
fix nits
parent
6d15cf39
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/proofmode.v
+8
-9
8 additions, 9 deletions
tests/proofmode.v
theories/bi/telescopes.v
+5
-5
5 additions, 5 deletions
theories/bi/telescopes.v
with
13 additions
and
14 deletions
tests/proofmode.v
+
8
−
9
View file @
191a6f43
...
...
@@ -534,15 +534,14 @@ Proof.
Qed
.
Section
wandM
.
Import
proofmode
.
base
.
Lemma
test_wandM
mP
Q
R
:
(
mP
-∗
?
Q
)
-∗
(
Q
-∗
R
)
-∗
(
mP
-∗
?
R
)
.
Proof
.
iIntros
"HPQ HQR HP"
.
Show
.
iApply
"HQR"
.
iApply
"HPQ"
.
Show
.
done
.
Qed
.
Import
proofmode
.
base
.
Lemma
test_wandM
mP
Q
R
:
(
mP
-∗
?
Q
)
-∗
(
Q
-∗
R
)
-∗
(
mP
-∗
?
R
)
.
Proof
.
iIntros
"HPQ HQR HP"
.
Show
.
iApply
"HQR"
.
iApply
"HPQ"
.
Show
.
done
.
Qed
.
End
wandM
.
End
tests
.
...
...
This diff is collapsed.
Click to expand it.
theories/bi/telescopes.v
+
5
−
5
View file @
191a6f43
...
...
@@ -23,8 +23,8 @@ Notation "'∀..' x .. y , P" := (bi_tforall (λ x, .. (bi_tforall (λ y, P)) ..
Section
telescope_quantifiers
.
Context
{
PROP
:
bi
}
{
TT
:
tele
}
.
Lemma
bi_tforall_forall
(
Ψ
:
TT
->
PROP
)
:
(
bi_tforall
Ψ
)
⊣⊢
(
bi_forall
Ψ
)
.
Lemma
bi_tforall_forall
(
Ψ
:
TT
→
PROP
)
:
bi_tforall
Ψ
⊣⊢
bi_forall
Ψ
.
Proof
.
symmetry
.
unfold
bi_tforall
.
induction
TT
as
[|
X
ft
IH
]
.
-
simpl
.
apply
(
anti_symm
_)
.
...
...
@@ -36,11 +36,11 @@ Section telescope_quantifiers.
by
rewrite
(
forall_elim
(
TargS
a
p
))
.
+
move
/
tele_arg_inv
:
(
a
)
=>
[
x
[
pf
->
]]
{
a
}
/=.
setoid_rewrite
<-
IH
.
do
2
rewrite
forall_elim
.
done
.
rewrite
2
!
forall_elim
.
done
.
Qed
.
Lemma
bi_texist_exist
(
Ψ
:
TT
->
PROP
)
:
(
bi_texist
Ψ
)
⊣⊢
(
bi_exist
Ψ
)
.
Lemma
bi_texist_exist
(
Ψ
:
TT
→
PROP
)
:
bi_texist
Ψ
⊣⊢
bi_exist
Ψ
.
Proof
.
symmetry
.
unfold
bi_texist
.
induction
TT
as
[|
X
ft
IH
]
.
-
simpl
.
apply
(
anti_symm
_)
.
...
...
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