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
7c714af0
Commit
7c714af0
authored
7 years ago
by
Jacques-Henri Jourdan
Browse files
Options
Downloads
Patches
Plain Diff
Monpred : try to fix intowand instances.
parent
d52fc276
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
_CoqProject
+1
-1
1 addition, 1 deletion
_CoqProject
theories/proofmode/monpred.v
+60
-30
60 additions, 30 deletions
theories/proofmode/monpred.v
theories/tests/proofmode_monpred.v
+24
-1
24 additions, 1 deletion
theories/tests/proofmode_monpred.v
with
85 additions
and
32 deletions
_CoqProject
+
1
−
1
View file @
7c714af0
...
@@ -97,7 +97,7 @@ theories/tests/heap_lang.v
...
@@ -97,7 +97,7 @@ theories/tests/heap_lang.v
theories/tests/one_shot.v
theories/tests/one_shot.v
theories/tests/proofmode.v
theories/tests/proofmode.v
theories/tests/proofmode_iris.v
theories/tests/proofmode_iris.v
theories/tests/proofmode_mon
P
red.v
theories/tests/proofmode_mon
p
red.v
theories/tests/list_reverse.v
theories/tests/list_reverse.v
theories/tests/tree_sum.v
theories/tests/tree_sum.v
theories/tests/ipm_paper.v
theories/tests/ipm_paper.v
...
...
This diff is collapsed.
Click to expand it.
theories/proofmode/monpred.v
+
60
−
30
View file @
7c714af0
...
@@ -2,18 +2,21 @@ From iris.bi Require Export monpred.
...
@@ -2,18 +2,21 @@ From iris.bi Require Export monpred.
From
iris
.
proofmode
Require
Import
tactics
.
From
iris
.
proofmode
Require
Import
tactics
.
Import
MonPred
.
Import
MonPred
.
Class
MakeMonPredCar
{
I
:
bi_index
}
{
PROP
:
bi
}
(
i
:
I
)
(
P
:
monPred
I
PROP
)
(
𝓟
:
PROP
)
:=
make_monPred_car
:
P
i
⊣⊢
𝓟
.
Arguments
MakeMonPredCar
{_
_}
_
_
%
I
_
%
I
.
Hint
Mode
MakeMonPredCar
+
+
-
!
-.
Section
bi
.
Section
bi
.
Context
{
I
:
bi_index
}
{
PROP
:
bi
}
.
Context
{
I
:
bi_index
}
{
PROP
:
bi
}
.
Local
Notation
monPred
:=
(
monPred
I
PROP
)
.
Local
Notation
monPred
:=
(
monPred
I
PROP
)
.
Local
Notation
MakeMonPredCar
:=
(
@
MakeMonPredCar
I
PROP
)
.
Implicit
Types
P
Q
R
:
monPred
.
Implicit
Types
P
Q
R
:
monPred
.
Implicit
Types
𝓟
𝓠
𝓡
:
PROP
.
Implicit
Types
𝓟
𝓠
𝓡
:
PROP
.
Implicit
Types
φ
:
Prop
.
Implicit
Types
φ
:
Prop
.
Implicit
Types
i
j
:
I
.
Implicit
Types
i
j
:
I
.
Class
MakeMonPredCar
i
P
𝓟
:=
make_monPred_car
:
P
i
⊣⊢
𝓟
.
Arguments
MakeMonPredCar
_
_
%
I
_
%
I
.
Global
Instance
make_monPred_car_pure
φ
i
:
MakeMonPredCar
i
⌜
φ
⌝
⌜
φ
⌝.
Global
Instance
make_monPred_car_pure
φ
i
:
MakeMonPredCar
i
⌜
φ
⌝
⌜
φ
⌝.
Proof
.
rewrite
/
MakeMonPredCar
.
by
unseal
.
Qed
.
Proof
.
rewrite
/
MakeMonPredCar
.
by
unseal
.
Qed
.
Global
Instance
make_monPred_car_internal_eq
{
A
:
ofeT
}
(
x
y
:
A
)
i
:
Global
Instance
make_monPred_car_internal_eq
{
A
:
ofeT
}
(
x
y
:
A
)
i
:
...
@@ -141,17 +144,21 @@ Proof.
...
@@ -141,17 +144,21 @@ Proof.
by
destruct
a
,
pe
=>
<-
;
try
unseal
.
by
destruct
a
,
pe
=>
<-
;
try
unseal
.
Qed
.
Qed
.
(* FIXME : P and Q do not go through MakeMonPredCar, which prevent
Lemma
into_wand_monPred_car_unknown_unknown
p
q
R
P
𝓟
Q
𝓠
i
:
lazilly unfolding of monPred connectives there. The reason we
IntoWand
p
q
R
P
Q
→
MakeMonPredCar
i
P
𝓟
→
MakeMonPredCar
i
Q
𝓠
→
cannot do that is that IntoWand is sometimes called with known
IntoWand
p
q
(
R
i
)
𝓟
𝓠
.
values, which we do not wnat to replace with existentials. *)
Global
Instance
into_wand_monPred_car
p
q
R
P
Q
i
:
IntoWand
p
q
R
P
Q
→
IntoWand
p
q
(
R
i
)
(
P
i
)
(
Q
i
)
.
Proof
.
Proof
.
rewrite
/
IntoWand
/
MakeMonPredCar
/
bi_affinely_if
/
bi_persistently_if
.
rewrite
/
IntoWand
/
MakeMonPredCar
/
bi_affinely_if
/
bi_persistently_if
.
destruct
p
,
q
=>
/
bi
.
wand_elim_l'
[
/
(_
i
)
H
];
apply
bi
.
wand_intro_r
;
destruct
p
,
q
=>
/
bi
.
wand_elim_l'
[
/
(_
i
)
H
]
<-
<-
;
apply
bi
.
wand_intro_r
;
revert
H
;
unseal
;
done
.
revert
H
;
unseal
;
done
.
Qed
.
Qed
.
Lemma
into_wand_monPred_car_unknown_known
p
q
R
P
𝓟
Q
i
:
IntoWand
p
q
R
P
Q
→
MakeMonPredCar
i
P
𝓟
→
IntoWand
p
q
(
R
i
)
𝓟
(
Q
i
)
.
Proof
.
intros
.
eapply
into_wand_monPred_car_unknown_unknown
=>
//.
apply
_
.
Qed
.
Lemma
into_wand_monPred_car_known_unknown
p
q
R
P
Q
𝓠
i
:
IntoWand
p
q
R
P
Q
→
MakeMonPredCar
i
Q
𝓠
→
IntoWand
p
q
(
R
i
)
(
P
i
)
𝓠
.
Proof
.
intros
.
eapply
into_wand_monPred_car_unknown_unknown
=>
//.
apply
_
.
Qed
.
Global
Instance
into_wand_wand'_monPred
p
q
P
Q
𝓟
𝓠
i
:
Global
Instance
into_wand_wand'_monPred
p
q
P
Q
𝓟
𝓠
i
:
IntoWand'
p
q
((
P
-∗
Q
)
i
)
𝓟
𝓠
→
IntoWand
p
q
((
P
-∗
Q
)
i
)
𝓟
𝓠
|
100
.
IntoWand'
p
q
((
P
-∗
Q
)
i
)
𝓟
𝓠
→
IntoWand
p
q
((
P
-∗
Q
)
i
)
𝓟
𝓠
|
100
.
Proof
.
done
.
Qed
.
Proof
.
done
.
Qed
.
...
@@ -163,31 +170,37 @@ Global Instance from_forall_monPred_car_wand P Q (Φ Ψ : I → PROP) i :
...
@@ -163,31 +170,37 @@ Global Instance from_forall_monPred_car_wand P Q (Φ Ψ : I → PROP) i :
(
∀
j
,
MakeMonPredCar
j
P
(
Φ
j
))
→
(
∀
j
,
MakeMonPredCar
j
Q
(
Ψ
j
))
→
(
∀
j
,
MakeMonPredCar
j
P
(
Φ
j
))
→
(
∀
j
,
MakeMonPredCar
j
Q
(
Ψ
j
))
→
FromForall
((
P
-∗
Q
)
i
)
%
I
(
λ
j
,
⌜
i
⊑
j
⌝
→
Φ
j
-∗
Ψ
j
)
%
I
.
FromForall
((
P
-∗
Q
)
i
)
%
I
(
λ
j
,
⌜
i
⊑
j
⌝
→
Φ
j
-∗
Ψ
j
)
%
I
.
Proof
.
Proof
.
rewrite
/
FromForall
/
MakeMonPredCar
.
unseal
=>
H1
H2
.
rewrite
/
FromForall
/
MakeMonPredCar
.
unseal
=>
H1
H2
.
do
2
f_equiv
.
setoid_rewrite
H1
.
setoid_rewrite
H2
.
done
.
by
rewrite
H1
H2
.
Qed
.
Global
Instance
into_forall_monPred_car_wand
P
Q
(
Φ
Ψ
:
I
→
PROP
)
i
:
(
∀
j
,
MakeMonPredCar
j
P
(
Φ
j
))
→
(
∀
j
,
MakeMonPredCar
j
Q
(
Ψ
j
))
→
IntoForall
((
P
-∗
Q
)
i
)
(
λ
j
,
⌜
i
⊑
j
⌝
→
Φ
j
-∗
Ψ
j
)
%
I
.
Proof
.
rewrite
/
IntoForall
/
MakeMonPredCar
.
unseal
=>
H1
H2
.
setoid_rewrite
H1
.
setoid_rewrite
H2
.
done
.
Qed
.
Qed
.
Global
Instance
from_forall_monPred_car_impl
P
Q
(
Φ
Ψ
:
I
→
PROP
)
i
:
Global
Instance
from_forall_monPred_car_impl
P
Q
(
Φ
Ψ
:
I
→
PROP
)
i
:
(
∀
j
,
MakeMonPredCar
j
P
(
Φ
j
))
→
(
∀
j
,
MakeMonPredCar
j
Q
(
Ψ
j
))
→
(
∀
j
,
MakeMonPredCar
j
P
(
Φ
j
))
→
(
∀
j
,
MakeMonPredCar
j
Q
(
Ψ
j
))
→
FromForall
((
P
→
Q
)
i
)
%
I
(
λ
j
,
⌜
i
⊑
j
⌝
→
Φ
j
→
Ψ
j
)
%
I
.
FromForall
((
P
→
Q
)
i
)
%
I
(
λ
j
,
⌜
i
⊑
j
⌝
→
Φ
j
→
Ψ
j
)
%
I
.
Proof
.
Proof
.
rewrite
/
FromForall
/
MakeMonPredCar
.
unseal
=>
H1
H2
.
rewrite
/
FromForall
/
MakeMonPredCar
.
unseal
=>
H1
H2
.
do
2
f_equiv
.
setoid_rewrite
H1
.
setoid_rewrite
H2
.
done
.
by
rewrite
H1
H2
bi
.
pure_impl_forall
.
Qed
.
Global
Instance
into_forall_monPred_car_impl
P
Q
(
Φ
Ψ
:
I
→
PROP
)
i
:
(
∀
j
,
MakeMonPredCar
j
P
(
Φ
j
))
→
(
∀
j
,
MakeMonPredCar
j
Q
(
Ψ
j
))
→
IntoForall
((
P
→
Q
)
i
)
(
λ
j
,
⌜
i
⊑
j
⌝
→
Φ
j
→
Ψ
j
)
%
I
.
Proof
.
rewrite
/
IntoForall
/
MakeMonPredCar
.
unseal
=>
H1
H2
.
setoid_rewrite
H1
.
setoid_rewrite
H2
.
done
.
Qed
.
Qed
.
(* FIXME : I disable these instances, because I prefer not adding the
corresponding IntoWand instance. Adding the IntoWand instance would
be ambiguous, because we want to be abble to iApply without proving
view inclusion when they match (i.e., we want to use
[into_wand_monPred_car]). *)
(* Global Instance into_forall_monPred_car_wand P Q (Φ Ψ : I → PROP) i : *)
(* (∀ j, MakeMonPredCar j P (Φ j)) → (∀ j, MakeMonPredCar j Q (Ψ j)) → *)
(* IntoForall ((P -∗ Q) i) (λ j, ⌜i ⊑ j⌝ → Φ j -∗ Ψ j)%I. *)
(* Proof. *)
(* rewrite /IntoForall /MakeMonPredCar. unseal=> H1 H2. do 2 f_equiv. *)
(* by rewrite H1 H2. *)
(* Qed. *)
(* Global Instance into_forall_monPred_car_impl P Q (Φ Ψ : I → PROP) i : *)
(* (∀ j, MakeMonPredCar j P (Φ j)) → (∀ j, MakeMonPredCar j Q (Ψ j)) → *)
(* IntoForall ((P → Q) i) (λ j, ⌜i ⊑ j⌝ → Φ j → Ψ j)%I. *)
(* Proof. *)
(* rewrite /IntoForall /MakeMonPredCar. unseal=> H1 H2. do 2 f_equiv. *)
(* by rewrite H1 H2 bi.pure_impl_forall. *)
(* Qed. *)
Global
Instance
from_and_monPred_car
P
Q1
𝓠1
Q2
𝓠2
i
:
Global
Instance
from_and_monPred_car
P
Q1
𝓠1
Q2
𝓠2
i
:
FromAnd
P
Q1
Q2
→
MakeMonPredCar
i
Q1
𝓠1
→
MakeMonPredCar
i
Q2
𝓠2
→
FromAnd
P
Q1
Q2
→
MakeMonPredCar
i
Q1
𝓠1
→
MakeMonPredCar
i
Q2
𝓠2
→
FromAnd
(
P
i
)
𝓠1
𝓠2
.
FromAnd
(
P
i
)
𝓠1
𝓠2
.
...
@@ -272,7 +285,24 @@ Global Instance from_modal_monPred_car i P Q 𝓠 :
...
@@ -272,7 +285,24 @@ Global Instance from_modal_monPred_car i P Q 𝓠 :
Proof
.
by
rewrite
/
FromModal
/
MakeMonPredCar
=>
<-
<-.
Qed
.
Proof
.
by
rewrite
/
FromModal
/
MakeMonPredCar
=>
<-
<-.
Qed
.
End
bi
.
End
bi
.
Hint
Mode
MakeMonPredCar
+
+
-
!
-.
(* When P and/or Q are evars when doing typeclass search on [IntoWand
(R i) P Q], we use [MakeMonPredCar] in order to normalize the
result of unification. However, when they are not evars, we want to
propagate the known information through typeclass search. Hence, we
do not want to use [MakeMonPredCar].
As a result, depending on P and Q being evars, we use a different
version of [into_wand_monPred_car_xx_xx]. *)
Hint
Extern
3
(
IntoWand
_
_
(
monPred_car
_
_)
?P
?Q
)
=>
is_evar
P
;
is_evar
Q
;
eapply
@
into_wand_monPred_car_unknown_unknown
:
typeclass_instances
.
Hint
Extern
2
(
IntoWand
_
_
(
monPred_car
_
_)
?P
(
monPred_car
?Q
_))
=>
eapply
@
into_wand_monPred_car_unknown_known
:
typeclass_instances
.
Hint
Extern
2
(
IntoWand
_
_
(
monPred_car
_
_)
(
monPred_car
?P
_)
?Q
)
=>
eapply
@
into_wand_monPred_car_known_unknown
:
typeclass_instances
.
Section
sbi
.
Section
sbi
.
Context
{
I
:
bi_index
}
{
PROP
:
sbi
}
.
Context
{
I
:
bi_index
}
{
PROP
:
sbi
}
.
...
...
This diff is collapsed.
Click to expand it.
theories/tests/proofmode_mon
P
red.v
→
theories/tests/proofmode_mon
p
red.v
+
24
−
1
View file @
7c714af0
...
@@ -27,4 +27,27 @@ Section tests.
...
@@ -27,4 +27,27 @@ Section tests.
Lemma
test_iStartProof_7
P
:
((
P
≡
P
)
%
I
:
monPredI
)
.
Lemma
test_iStartProof_7
P
:
((
P
≡
P
)
%
I
:
monPredI
)
.
Proof
.
iStartProof
PROP
.
done
.
Qed
.
Proof
.
iStartProof
PROP
.
done
.
Qed
.
End
tests
.
Lemma
test_intowand_1
P
Q
:
(
P
-∗
Q
)
-∗
P
-∗
Q
.
\ No newline at end of file
Proof
.
iStartProof
PROP
.
iIntros
(
i
)
"HW"
.
iIntros
(
j
->
)
"HP"
.
by
iApply
"HW"
.
Qed
.
Lemma
test_intowand_2
P
Q
:
(
P
-∗
Q
)
-∗
P
-∗
Q
.
Proof
.
iStartProof
PROP
.
iIntros
(
i
)
"HW"
.
iIntros
(
j
->
)
"HP"
.
iSpecialize
(
"HW"
with
"[HP //]"
)
.
done
.
Qed
.
Lemma
test_intowand_3
P
Q
:
(
P
-∗
Q
)
-∗
P
-∗
Q
.
Proof
.
iStartProof
PROP
.
iIntros
(
i
)
"HW"
.
iIntros
(
j
->
)
"HP"
.
iSpecialize
(
"HW"
with
"HP"
)
.
done
.
Qed
.
Lemma
test_intowand_4
P
Q
:
(
P
-∗
Q
)
-∗
▷
P
-∗
▷
Q
.
Proof
.
iStartProof
PROP
.
iIntros
(
i
)
"HW"
.
iIntros
(
j
->
)
"HP"
.
by
iApply
"HW"
.
Qed
.
Lemma
test_intowand_5
P
Q
:
(
P
-∗
Q
)
-∗
▷
P
-∗
▷
Q
.
Proof
.
iStartProof
PROP
.
iIntros
(
i
)
"HW"
.
iIntros
(
j
->
)
"HP"
.
iSpecialize
(
"HW"
with
"HP"
)
.
done
.
Qed
.
End
tests
.
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