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
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
Iris
Actris
Commits
611ac735
Commit
611ac735
authored
4 years ago
by
Jonas Kastberg
Browse files
Options
Downloads
Patches
Plain Diff
WIP: Progress on recv rule
parent
6c4e6ece
No related branches found
No related tags found
1 merge request
!13
Jonas/more polymorphism
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/logrel/term_typing_rules.v
+15
-6
15 additions, 6 deletions
theories/logrel/term_typing_rules.v
with
15 additions
and
6 deletions
theories/logrel/term_typing_rules.v
+
15
−
6
View file @
611ac735
...
@@ -487,9 +487,19 @@ Section properties.
...
@@ -487,9 +487,19 @@ Section properties.
Section
with_chan
.
Section
with_chan
.
Context
`{
chanG
Σ
}
.
Context
`{
chanG
Σ
}
.
Lemma
lmsg_iMsg
{
kt
:
ktele
Σ
}
(
M
:
ktele_to_tele
kt
→
lmsg
Σ
)
:
lty_msg_texist
(
λ
Xs
,
M
(
ltys_to_tele_args
Xs
))
≡
iMsg_texist
M
.
Proof
.
induction
kt
.
-
eauto
.
-
simpl
.
rewrite
/
lty_msg_texist
.
simpl
.
admit
.
Admitted
.
Lemma
chan_texist_exist
{
kt
:
ktele
Σ
}
c
(
M
:
ktele_to_tele
kt
→
lmsg
Σ
)
:
Lemma
chan_texist_exist
{
kt
:
ktele
Σ
}
c
(
M
:
ktele_to_tele
kt
→
lmsg
Σ
)
:
ltty_car
(
chan
(
<
??.
.
Xs
>
M
(
ltys_to_tele_args
Xs
)
))
c
-∗
c
↣
(
<
?.
.
Xs
>
M
Xs
)
.
ltty_car
(
chan
(
<
??.
.
Xs
>
M
(
ltys_to_tele_args
Xs
)
))
c
-∗
c
↣
(
<
?.
.
Xs
>
M
Xs
)
.
Proof
.
Admitt
ed
.
Proof
.
rewrite
-
lmsg_iMsg
.
eauto
.
Q
ed
.
Definition
chanalloc
:
val
:=
λ
:
"u"
,
let
:
"cc"
:=
new_chan
#
()
in
"cc"
.
Definition
chanalloc
:
val
:=
λ
:
"u"
,
let
:
"cc"
:=
new_chan
#
()
in
"cc"
.
Lemma
ltyped_chanalloc
S
:
Lemma
ltyped_chanalloc
S
:
...
@@ -543,17 +553,16 @@ Section properties.
...
@@ -543,17 +553,16 @@ Section properties.
Qed
.
Qed
.
Lemma
ltyped_recv_poly
{
kt
:
ktele
Σ
}
Γ1
Γ2
(
c
:
string
)
(
x
:
string
)
(
e
:
expr
)
Lemma
ltyped_recv_poly
{
kt
:
ktele
Σ
}
Γ1
Γ2
(
c
:
string
)
(
x
:
string
)
(
e
:
expr
)
(
A
:
ltys
Σ
kt
→
ltty
Σ
)
(
S
:
ltys
Σ
kt
→
lsty
Σ
)
(
B
:
ltty
Σ
)
:
(
A
:
ltys
Σ
kt
→
ltty
Σ
)
(
M
:
ltys
Σ
kt
→
lsty
Σ
)
(
B
:
ltty
Σ
)
:
⊢
(
∀
Ys
,
binder_insert
x
(
A
Ys
)
(
<
[
c
:=
(
chan
(
S
Ys
))
%
lty
]
>
Γ1
)
⊨
e
:
B
⫤
Γ2
)
-∗
(
∀
Ys
,
binder_insert
x
(
A
Ys
)
(
<
[
c
:=
(
chan
(
M
Ys
))
%
lty
]
>
Γ1
)
⊨
e
:
B
⫤
Γ2
)
-∗
<
[
c
:=
(
chan
(
<
??
>
∃
.
.
Xs
,
TY
A
Xs
;
S
Xs
))
%
lty
]
>
Γ1
⊨
<
[
c
:=
(
chan
(
<
??
>
∃
.
.
Xs
,
TY
A
Xs
;
M
Xs
))
%
lty
]
>
Γ1
⊨
(
let
:
x
:=
recv
c
in
e
)
:
B
⫤
binder_delete
x
Γ2
.
(
let
:
x
:=
recv
c
in
e
)
:
B
⫤
binder_delete
x
Γ2
.
Proof
.
Proof
.
iIntros
"#He !>"
.
iIntros
(
vs
)
"HΓ"
=>
/=.
iIntros
"#He !>"
.
iIntros
(
vs
)
"HΓ"
=>
/=.
iDestruct
(
env_ltyped_lookup
with
"HΓ"
)
as
(
v'
Heq
)
"[Hc HΓ]"
.
iDestruct
(
env_ltyped_lookup
with
"HΓ"
)
as
(
v'
Heq
)
"[Hc HΓ]"
.
{
by
apply
lookup_insert
.
}
{
by
apply
lookup_insert
.
}
rewrite
Heq
.
rewrite
Heq
.
rewrite
delete_insert
;
last
by
admit
.
iDestruct
(
@
chan_texist_exist
kt
v'
_
with
"[Hc]"
)
as
"Hc"
.
iDestruct
(
chan_texist_exist
v'
with
"[Hc]"
)
as
"Hc"
.
{
admit
.
}
{
admit
.
}
wp_apply
(
recv_spec
with
"[Hc]"
)
.
wp_apply
(
recv_spec
with
"[Hc]"
)
.
{
admit
.
}
{
admit
.
}
...
...
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