Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Actris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
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
tlsomers
Actris
Commits
07b598d8
Commit
07b598d8
authored
4 years ago
by
Jonas Kastberg
Browse files
Options
Downloads
Patches
Plain Diff
Updated mechanisation of choice example
parent
9e3dea42
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/logrel/examples/choice_subtyping.v
+109
-66
109 additions, 66 deletions
theories/logrel/examples/choice_subtyping.v
with
109 additions
and
66 deletions
theories/logrel/examples/choice_subtyping.v
+
109
−
66
View file @
07b598d8
(**
A mechanisation of a binary variant of the subtyping example on page 23 of the paper:
"On the Preciseness of Subtyping in Session Types"
https://arxiv.org/pdf/1610.00328.pdf
*)
From
actris
.
channel
Require
Import
proofmode
proto
channel
.
From
actris
.
logrel
Require
Import
subtyping_rules
.
From
iris
.
proofmode
Require
Import
tactics
.
...
...
@@ -5,122 +10,143 @@ From iris.proofmode Require Import tactics.
Section
choice_example
.
Context
`{
heapG
Σ
,
chanG
Σ
}
.
Variables
R
M
P
Q
S
U
:
ltty
Σ
.
Variables
Sr
Sm
Sp
Sq
Ss
Su
:
ltty
Σ
.
Variables
Srm
Ssm
Srp
Ssp
Sr'
:
ltty
Σ
.
Variables
Tr
Ts
Tu
Tr'
Ts'
Tq
:
lsty
Σ
.
(**
?R. ((!M._) <+> (!P._) <+> (!Q._))
The subtype
?Sr.((!Srm.Tr) <+> (!Srp.Tr') <+> (!Sq.Tq))
<&>
?S.
((!
M._
) <+> (!
P._
))
?S
s
.((!
Ssm.Ts
) <+> (!
Ssp.Ts'
))
*)
Definition
prot_sub
:
lsty
Σ
:=
(
lty_branch
(
<
[
1
%
Z
:=
<
??
>
TY
R
;
(
<
[
1
%
Z
:=
<
??
>
TY
Sr
;
lty_select
(
<
[
1
%
Z
:=
<!!>
TY
M
;
END
]
>
(
<
[
2
%
Z
:=
<!!>
TY
P
;
END
]
>
(
<
[
3
%
Z
:=
<!!>
TY
Q
;
END
]
>∅
)))]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
;
(
<
[
1
%
Z
:=
<!!>
TY
Srm
;
Tr
]
>
(
<
[
2
%
Z
:=
<!!>
TY
Srp
;
Tr'
]
>
(
<
[
3
%
Z
:=
<!!>
TY
Sq
;
Tq
]
>∅
)))]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
s
;
lty_select
(
<
[
1
%
Z
:=
<!!>
TY
M
;
END
]
>
(
<
[
2
%
Z
:=
<!!>
TY
P
;
END
]
>∅
))]
>∅
)))
%
lty
.
(
<
[
1
%
Z
:=
<!!>
TY
Ssm
;
Ts
]
>
(
<
[
2
%
Z
:=
<!!>
TY
Ssp
;
Ts'
]
>∅
))]
>∅
)))
%
lty
.
(**
!M.((?R._) <&> (?S._) <&> (?U._))
The supertype
!Sm.((?Sr.Tr) <&> (?Ss.Ts) <&> (?Su.Tu))
<+>
!
P
.((?
R._
) <&> (?S
._
))
!
Sp
.((?
Sr'.Tr'
) <&> (?S
s.Ts'
))
*)
Definition
prot_sup
:
lsty
Σ
:=
(
lty_select
(
<
[
1
%
Z
:=
<!!>
TY
M
;
lty_branch
(
<
[
1
%
Z
:=
<
??
>
TY
R
;
END
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
;
END
]
>
(
<
[
3
%
Z
:=
<
??
>
TY
U
;
END
]
>∅
)))]
>
(
<
[
2
%
Z
:=
<!!>
TY
P
;
lty_branch
(
<
[
1
%
Z
:=
<
??
>
TY
R
;
END
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
;
END
]
>∅
))]
>∅
)))
%
lty
.
(
<
[
1
%
Z
:=
<!!>
TY
Sm
;
lty_branch
(
<
[
1
%
Z
:=
<
??
>
TY
Sr
;
Tr
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
s
;
Ts
]
>
(
<
[
3
%
Z
:=
<
??
>
TY
Su
;
Tu
]
>∅
)))]
>
(
<
[
2
%
Z
:=
<!!>
TY
Sp
;
lty_branch
(
<
[
1
%
Z
:=
<
??
>
TY
Sr'
;
Tr'
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
s
;
Ts'
]
>∅
))]
>∅
)))
%
lty
.
(**
Weaken select
?
R
.((!
M._
) <+> (!
P._
))
?
Sr
.((!
Srm.Tr
) <+> (!
Srp.Tr'
))
<&>
?S.((!
M._
) <+> (!
P._
))
?S
s
.((!
Ssm.Ts
) <+> (!
Ssp.Ts'
))
*)
Definition
prot1
:
lsty
Σ
:=
(
lty_branch
(
<
[
1
%
Z
:=
<
??
>
TY
R
;
(
<
[
1
%
Z
:=
<
??
>
TY
Sr
;
lty_select
(
<
[
1
%
Z
:=
<!!>
TY
M
;
END
]
>
(
<
[
2
%
Z
:=
<!!>
TY
P
;
END
]
>∅
))]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
;
(
<
[
1
%
Z
:=
<!!>
TY
Srm
;
Tr
]
>
(
<
[
2
%
Z
:=
<!!>
TY
Srp
;
Tr'
]
>∅
))]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
s
;
lty_select
(
<
[
1
%
Z
:=
<!!>
TY
M
;
END
]
>
(
<
[
2
%
Z
:=
<!!>
TY
P
;
END
]
>∅
))]
>∅
)))
%
lty
.
(
<
[
1
%
Z
:=
<!!>
TY
Ssm
;
Ts
]
>
(
<
[
2
%
Z
:=
<!!>
TY
Ssp
;
Ts'
]
>∅
))]
>∅
)))
%
lty
.
(**
Swap recv/select
((?
R.!M._) <+> (?R.!P._
))
((?
Sr.!Srm.Tr) <+> (?Sr.!Srp.Tr'
))
<&>
((?S.!
M._
) <+> (?S.!
P._
))
((?S
s
.!
Ssm.Ts
) <+> (?S
s
.!
Ssp.Ts'
))
*)
Definition
prot2
:
lsty
Σ
:=
(
lty_branch
(
<
[
1
%
Z
:=
lty_select
(
<
[
1
%
Z
:=
<
??
>
TY
R
;
<!!>
TY
M
;
END
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
R
;
<!!>
TY
P
;
END
]
>∅
))]
>
(
<
[
1
%
Z
:=
<
??
>
TY
Sr
;
<!!>
TY
Srm
;
Tr
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
Sr
;
<!!>
TY
Srp
;
Tr'
]
>∅
))]
>
(
<
[
2
%
Z
:=
lty_select
(
<
[
1
%
Z
:=
<
??
>
TY
S
;
<!!>
TY
M
;
END
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
;
<!!>
TY
P
;
END
]
>∅
))]
>∅
)))
%
lty
.
(
<
[
1
%
Z
:=
<
??
>
TY
S
s
;
<!!>
TY
Ssm
;
Ts
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
s
;
<!!>
TY
Ssp
;
Ts'
]
>∅
))]
>∅
)))
%
lty
.
(**
swap branch/select
((?
R.!M._
) <&> (?S.!
M._
))
((?
Sr.!Srm.Tr
) <&> (?S
s
.!
Ssm.Ts
))
<+>
((?
R.!P._
) <&> (?S.!
P._
))
((?
Sr.!Srp.Tr'
) <&> (?S
s
.!
Ssp.Ts'
))
*)
Definition
prot3
:
lsty
Σ
:=
(
lty_select
(
<
[
1
%
Z
:=
lty_branch
(
<
[
1
%
Z
:=
<
??
>
TY
R
;
<!!>
TY
M
;
END
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
;
<!!>
TY
M
;
END
]
>∅
))]
>
(
<
[
1
%
Z
:=
<
??
>
TY
Sr
;
<!!>
TY
Srm
;
Tr
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
s
;
<!!>
TY
Ssm
;
Ts
]
>∅
))]
>
(
<
[
2
%
Z
:=
lty_branch
(
<
[
1
%
Z
:=
<
??
>
TY
R
;
<!!>
TY
P
;
END
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
;
<!!>
TY
P
;
END
]
>∅
))]
>∅
)))
%
lty
.
(
<
[
1
%
Z
:=
<
??
>
TY
Sr
;
<!!>
TY
Srp
;
Tr'
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
s
;
<!!>
TY
Ssp
;
Ts'
]
>∅
))]
>∅
)))
%
lty
.
(**
swap recv/send
((!
M.?R._) <&> (!M.?S._
))
((!
Srm.?Sr.Tr) <&> (!Ssm.?Ss.Ts
))
<+>
((!
P.?R._) <&> (!P.?S._
))
((!
Srp.?Sr.Tr') <&> (!Ssp.?Ss.Ts'
))
*)
Definition
prot4
:
lsty
Σ
:=
(
lty_select
(
<
[
1
%
Z
:=
lty_branch
(
<
[
1
%
Z
:=
<!!>
TY
M
;
<
??
>
TY
R
;
END
]
>
(
<
[
2
%
Z
:=
<!!>
TY
M
;
<
??
>
TY
S
;
END
]
>∅
))]
>
(
<
[
1
%
Z
:=
<!!>
TY
Srm
;
<
??
>
TY
Sr
;
Tr
]
>
(
<
[
2
%
Z
:=
<!!>
TY
Ssm
;
<
??
>
TY
S
s
;
Ts
]
>∅
))]
>
(
<
[
2
%
Z
:=
lty_branch
(
<
[
1
%
Z
:=
<!!>
TY
P
;
<
??
>
TY
R
;
END
]
>
(
<
[
2
%
Z
:=
<!!>
TY
P
;
<
??
>
TY
S
;
END
]
>∅
))]
>∅
)))
%
lty
.
(
<
[
1
%
Z
:=
<!!>
TY
Srp
;
<
??
>
TY
Sr
;
Tr'
]
>
(
<
[
2
%
Z
:=
<!!>
TY
Ssp
;
<
??
>
TY
S
s
;
Ts'
]
>∅
))]
>∅
)))
%
lty
.
(**
S
wap branch/send
!M.((?R._) <&> (?S._
))
S
ubtype messages
((!Sm.?Sr.Tr) <&> (!Sm.?Ss.Ts
))
<+>
!P.((?R._) <&> (?S._
))
((!Sp.?Sr'.Tr') <&> (!Sp.?Ss.Ts'
))
*)
Definition
prot5
:
lsty
Σ
:=
(
lty_select
(
<
[
1
%
Z
:=
<!!>
TY
M
;
lty_branch
(
<
[
1
%
Z
:=
<
??
>
TY
R
;
END
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
;
END
]
>∅
))]
>
(
<
[
2
%
Z
:=
<!!>
TY
P
;
(
<
[
1
%
Z
:=
lty_branch
(
<
[
1
%
Z
:=
<!!>
TY
Sm
;
<
??
>
TY
Sr
;
Tr
]
>
(
<
[
2
%
Z
:=
<!!>
TY
Sm
;
<
??
>
TY
Ss
;
Ts
]
>∅
))]
>
(
<
[
2
%
Z
:=
lty_branch
(
<
[
1
%
Z
:=
<!!>
TY
Sp
;
<
??
>
TY
Sr'
;
Tr'
]
>
(
<
[
2
%
Z
:=
<!!>
TY
Sp
;
<
??
>
TY
Ss
;
Ts'
]
>∅
))]
>∅
)))
%
lty
.
(**
Swap branch/send
(!Sm.((?Sr.Tr) <&> (?Ss.Ts)))
<+>
(!Sp.((?Sr'.Tr') <&> (!Sp.?Ss.Ts')))
*)
Definition
prot6
:
lsty
Σ
:=
(
lty_select
(
<
[
1
%
Z
:=
<!!>
TY
Sm
;
lty_branch
(
<
[
1
%
Z
:=
<
??
>
TY
Sr
;
Tr
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
Ss
;
Ts
]
>∅
))]
>
(
<
[
2
%
Z
:=
<!!>
TY
Sp
;
lty_branch
(
<
[
1
%
Z
:=
<
??
>
TY
R
;
END
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
;
END
]
>∅
))]
>∅
)))
%
lty
.
(
<
[
1
%
Z
:=
<
??
>
TY
Sr'
;
Tr'
]
>
(
<
[
2
%
Z
:=
<
??
>
TY
S
s
;
Ts'
]
>∅
))]
>∅
)))
%
lty
.
Lemma
subtype_proof
:
⊢
prot_sub
<:
prot_sup
.
Sm
<:
Srm
-∗
Sm
<:
Ssm
-∗
Sp
<:
Srp
-∗
Sp
<:
Ssp
-∗
Sr
<:
Sr'
-∗
prot_sub
<:
prot_sup
.
Proof
.
iIntros
"#HRM #HSM #HRP #HSP #HR"
.
(** Weakening of select *)
iApply
(
lty_le_trans
_
prot1
)
.
{
...
...
@@ -149,17 +175,17 @@ Section choice_example.
{
iApply
(
lty_le_swap_branch_select
(
<
[
1
%
Z
:=
<
[
1
%
Z
:=(
<
??
>
TY
R
;
<!!>
TY
M
;
END
)
%
lty
]
>
(
<
[
2
%
Z
:=
(
<
??
>
TY
R
;
<!!>
TY
P
;
END
)
%
lty
]
>∅
)]
>
<
[
1
%
Z
:=(
<
??
>
TY
Sr
;
<!!>
TY
Srm
;
Tr
)
%
lty
]
>
(
<
[
2
%
Z
:=
(
<
??
>
TY
Sr
;
<!!>
TY
Srp
;
Tr'
)
%
lty
]
>∅
)]
>
(
<
[
2
%
Z
:=
<
[
1
%
Z
:=(
<
??
>
TY
S
;
<!!>
TY
M
;
END
)
%
lty
]
>
(
<
[
2
%
Z
:=
(
<
??
>
TY
S
;
<!!>
TY
P
;
END
)
%
lty
]
>∅
)]
>∅
))
<
[
1
%
Z
:=(
<
??
>
TY
S
s
;
<!!>
TY
Ssm
;
Ts
)
%
lty
]
>
(
<
[
2
%
Z
:=
(
<
??
>
TY
S
s
;
<!!>
TY
Ssp
;
Ts'
)
%
lty
]
>∅
)]
>∅
))
(
<
[
1
%
Z
:=
<
[
1
%
Z
:=(
<
??
>
TY
R
;
<!!>
TY
M
;
END
)
%
lty
]
>
(
<
[
2
%
Z
:=
(
<
??
>
TY
S
;
<!!>
TY
M
;
END
)
%
lty
]
>∅
)]
>
<
[
1
%
Z
:=(
<
??
>
TY
Sr
;
<!!>
TY
Srm
;
Tr
)
%
lty
]
>
(
<
[
2
%
Z
:=
(
<
??
>
TY
S
s
;
<!!>
TY
Ssm
;
Ts
)
%
lty
]
>∅
)]
>
(
<
[
2
%
Z
:=
<
[
1
%
Z
:=(
<
??
>
TY
R
;
<!!>
TY
P
;
END
)
%
lty
]
>
(
<
[
2
%
Z
:=
(
<
??
>
TY
S
;
<!!>
TY
P
;
END
)
%
lty
]
>∅
)]
>∅
))
<
[
1
%
Z
:=(
<
??
>
TY
Sr
;
<!!>
TY
Srp
;
Tr'
)
%
lty
]
>
(
<
[
2
%
Z
:=
(
<
??
>
TY
S
s
;
<!!>
TY
Ssp
;
Ts'
)
%
lty
]
>∅
)]
>∅
))
)
.
intros
i
j
Ss1'
Ss2'
Hin1
Hin2
.
assert
(
i
=
1
%
Z
∨
i
=
2
%
Z
)
.
...
...
@@ -211,16 +237,33 @@ Section choice_example.
+
rewrite
big_sepM2_insert
=>
//.
iSplit
=>
//.
iApply
lty_le_swap_recv_send
.
}
(** Swap branch/send *)
iApply
(
lty_le_trans
_
prot5
)
.
{
iApply
lty_le_select
.
iIntros
"!>"
.
rewrite
big_sepM2_insert
=>
//.
iSplit
.
-
iApply
lty_le_branch
.
iIntros
"!>"
.
rewrite
big_sepM2_insert
=>
//.
iSplit
.
+
iApply
lty_le_send
;
eauto
.
+
rewrite
big_sepM2_insert
=>
//.
iSplit
=>
//.
iApply
lty_le_send
;
eauto
.
-
rewrite
big_sepM2_insert
=>
//.
iSplit
=>
//.
iApply
lty_le_branch
.
iIntros
"!>"
.
rewrite
big_sepM2_insert
=>
//.
iSplit
.
+
iApply
lty_le_send
;
[
eauto
|]
.
iApply
lty_le_recv
;
eauto
.
+
rewrite
big_sepM2_insert
=>
//.
iSplit
=>
//.
iApply
lty_le_send
;
eauto
.
}
(** Swap branch/send *)
iApply
(
lty_le_trans
_
prot6
)
.
{
iApply
lty_le_select
.
iIntros
"!>"
.
rewrite
big_sepM2_insert
=>
//.
iSplit
.
-
iApply
(
lty_le_swap_branch_send
_
(
<
[
1
%
Z
:=(
<
??
>
TY
R
;
END
)
%
lty
]
>
(
<
[
2
%
Z
:=(
<
??
>
TY
S
;
END
)
%
lty
]
>
∅
)))
.
(
<
[
1
%
Z
:=(
<
??
>
TY
Sr
;
Tr
)
%
lty
]
>
(
<
[
2
%
Z
:=(
<
??
>
TY
S
s
;
Ts
)
%
lty
]
>
∅
)))
.
-
rewrite
big_sepM2_insert
=>
//.
iSplit
=>
//.
iApply
(
lty_le_swap_branch_send
_
((
<
[
1
%
Z
:=(
<
??
>
TY
R
;
END
)
%
lty
]
>
(
<
[
2
%
Z
:=(
<
??
>
TY
S
;
END
)
%
lty
]
>
∅
))))
.
((
<
[
1
%
Z
:=(
<
??
>
TY
Sr'
;
Tr'
)
%
lty
]
>
(
<
[
2
%
Z
:=(
<
??
>
TY
S
s
;
Ts'
)
%
lty
]
>
∅
))))
.
}
(** Weaken branch *)
iApply
lty_le_select
.
iIntros
"!>"
.
...
...
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