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
e5840151
Commit
e5840151
authored
4 years ago
by
Jonas Kastberg
Browse files
Options
Downloads
Patches
Plain Diff
Nits
parent
9f957e7c
No related branches found
No related tags found
1 merge request
!8
Algorithmic Typing Judgement
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
theories/logrel/ltyping.v
+4
-7
4 additions, 7 deletions
theories/logrel/ltyping.v
theories/logrel/types.v
+1
-1
1 addition, 1 deletion
theories/logrel/types.v
with
5 additions
and
8 deletions
theories/logrel/ltyping.v
+
4
−
7
View file @
e5840151
...
...
@@ -103,7 +103,7 @@ Section Environment.
Qed
.
Definition
env_split
(
Γ
Γ1
Γ2
:
gmap
string
(
lty
Σ
))
:
iProp
Σ
:=
□
∀
vs
,
(
env_ltyped
Γ
vs
∗-∗
(
env_ltyped
Γ1
vs
∗
env_ltyped
Γ2
vs
)
)
.
□
∀
vs
,
env_ltyped
Γ
vs
∗-∗
(
env_ltyped
Γ1
vs
∗
env_ltyped
Γ2
vs
)
.
Lemma
env_split_id_l
Γ
:
⊢
env_split
Γ
∅
Γ
.
Proof
.
...
...
@@ -119,9 +119,7 @@ Section Environment.
Lemma
env_split_empty
:
⊢
env_split
∅
∅
∅.
Proof
.
iIntros
"!>"
(
vs
)
.
iSplit
.
-
iIntros
"HΓ"
.
rewrite
/
env_ltyped
.
auto
.
-
iIntros
"[HΓ1 HΓ2]"
.
auto
.
iSplit
;
[
iIntros
"HΓ"
|
iIntros
"[HΓ1 HΓ2]"
];
auto
.
Qed
.
(* TODO: Get rid of side condition that x does not appear in Γ1 *)
...
...
@@ -183,7 +181,7 @@ Section Environment.
iApply
"Hsplit"
.
iFrame
"HΓ1 HΓ2"
.
Qed
.
(*
(*
TODO: Prove lemmas about this *)
*)
(* TODO: Prove lemmas about this *)
Definition
env_copy
(
Γ
Γ'
:
gmap
string
(
lty
Σ
))
:
iProp
Σ
:=
□
∀
vs
,
env_ltyped
Γ
vs
-∗
□
env_ltyped
Γ'
vs
.
...
...
@@ -223,8 +221,7 @@ Definition ltyped `{!heapG Σ}
Notation
"Γ ⊨ e : A ⫤ Γ'"
:=
(
ltyped
Γ
Γ'
e
A
)
(
at
level
100
,
e
at
next
level
,
A
at
level
200
)
.
Notation
"Γ ⊨ e : A"
:=
(
ltyped
Γ
Γ
e
A
)
Notation
"Γ ⊨ e : A"
:=
(
Γ
⊨
e
:
A
⫤
Γ
)
(
at
level
100
,
e
at
next
level
,
A
at
level
200
)
.
Lemma
ltyped_frame
`{
!
heapG
Σ
}
(
Γ
Γ'
Γ1
Γ1'
Γ2
:
gmap
string
(
lty
Σ
))
e
A
:
...
...
This diff is collapsed.
Click to expand it.
theories/logrel/types.v
+
1
−
1
View file @
e5840151
...
...
@@ -763,7 +763,7 @@ Section properties.
Qed
.
Lemma
ltyped_recv
Γ
(
x
:
string
)
A
S
:
⊢
<
[
x
:=
(
chan
(
<
??
>
A
;
S
))
%
lty
]
>
Γ
⊨
recv
x
:
A
⫤
<
[
x
:=(
chan
S
)
%
lty
]
>
Γ
.
⊢
<
[
x
:=
(
chan
(
<
??
>
A
;
S
))
%
lty
]
>
Γ
⊨
recv
x
:
A
⫤
<
[
x
:=(
chan
S
)
%
lty
]
>
Γ
.
Proof
.
iIntros
"!>"
(
vs
)
"HΓ"
=>
/=.
iDestruct
(
env_ltyped_lookup
with
"HΓ"
)
as
(
v'
Heq
)
"[Hc HΓ]"
.
...
...
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