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
0a74ae14
Commit
0a74ae14
authored
4 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Bump Iris (ident_name changes).
parent
0c069e7d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
opam
+1
-1
1 addition, 1 deletion
opam
theories/channel/proto.v
+10
-6
10 additions, 6 deletions
theories/channel/proto.v
theories/logrel/subtyping_rules.v
+8
-6
8 additions, 6 deletions
theories/logrel/subtyping_rules.v
with
19 additions
and
13 deletions
opam
+
1
−
1
View file @
0a74ae14
...
...
@@ -9,5 +9,5 @@ build: [make "-j%{jobs}%"]
install: [make "install"]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/actris" ]
depends: [
"coq-iris" { (= "dev.2020-0
6-18.3.5f98a0bf
") | (= "dev") }
"coq-iris" { (= "dev.2020-0
7-21.2.e989ad6b
") | (= "dev") }
]
This diff is collapsed.
Click to expand it.
theories/channel/proto.v
+
10
−
6
View file @
0a74ae14
...
...
@@ -1233,12 +1233,16 @@ Section proto.
(** The instances below make it possible to use the tactics [iIntros],
[iExist], [iSplitL]/[iSplitR], [iFrame] and [iModIntro] on [iProto_le] goals. *)
Global
Instance
iProto_le_from_forall_l
{
A
}
a
(
m1
:
A
→
iMsg
Σ
V
)
m2
:
FromForall
((
<
?
x
>
m1
x
)
⊑
(
<
a
>
m2
))
(
λ
x
,
(
<
?
>
m1
x
)
⊑
(
<
a
>
m2
))
%
I
|
10
.
Proof
.
apply
iProto_le_exist_elim_l
.
Qed
.
Global
Instance
iProto_le_from_forall_r
{
A
}
a
m1
(
m2
:
A
→
iMsg
Σ
V
)
:
FromForall
((
<
a
>
m1
)
⊑
(
<!
x
>
m2
x
))
(
λ
x
,
(
<
a
>
m1
)
⊑
(
<!>
m2
x
))
%
I
|
11
.
Proof
.
apply
iProto_le_exist_elim_r
.
Qed
.
Global
Instance
iProto_le_from_forall_l
{
A
}
a
(
m1
:
A
→
iMsg
Σ
V
)
m2
name
:
AsIdentName
m1
name
→
FromForall
(
iProto_message
Recv
(
iMsg_exist
m1
)
⊑
(
<
a
>
m2
))
(
λ
x
,
(
<
?
>
m1
x
)
⊑
(
<
a
>
m2
))
%
I
name
|
10
.
Proof
.
intros
_
.
apply
iProto_le_exist_elim_l
.
Qed
.
Global
Instance
iProto_le_from_forall_r
{
A
}
a
m1
(
m2
:
A
→
iMsg
Σ
V
)
name
:
AsIdentName
m2
name
→
FromForall
((
<
a
>
m1
)
⊑
iProto_message
Send
(
iMsg_exist
m2
))
(
λ
x
,
(
<
a
>
m1
)
⊑
(
<!>
m2
x
))
%
I
name
|
11
.
Proof
.
intros
_
.
apply
iProto_le_exist_elim_r
.
Qed
.
Global
Instance
iProto_le_from_wand_l
a
m
v
P
p
:
TCIf
(
TCEq
P
True
%
I
)
False
TCTrue
→
...
...
This diff is collapsed.
Click to expand it.
theories/logrel/subtyping_rules.v
+
8
−
6
View file @
0a74ae14
...
...
@@ -497,12 +497,14 @@ Section subtyping_rules.
[iExist], [iSplitL]/[iSplitR], [iFrame] and [iModIntro] on [lty_le] goals.
These instances have higher precedence than the ones in [proto.v] to avoid
needless unfolding of the subtyping relation. *)
Global
Instance
lty_le_from_forall_l
k
(
M
:
lty
Σ
k
→
lmsg
Σ
)
(
S
:
lsty
Σ
)
:
FromForall
((
<
??
X
>
M
X
)
<:
S
)
(
λ
X
,
(
<
??
>
M
X
)
<:
S
)
%
I
|
0
.
Proof
.
apply
lty_le_exist_elim_l
.
Qed
.
Global
Instance
lty_le_from_forall_r
k
(
S
:
lsty
Σ
)
(
M
:
lty
Σ
k
→
lmsg
Σ
)
:
FromForall
(
S
<:
(
<!!
X
>
M
X
))
(
λ
X
,
S
<:
(
<!!>
M
X
))
%
I
|
1
.
Proof
.
apply
lty_le_exist_elim_r
.
Qed
.
Global
Instance
lty_le_from_forall_l
k
(
M
:
lty
Σ
k
→
lmsg
Σ
)
(
S
:
lsty
Σ
)
name
:
AsIdentName
M
name
→
FromForall
(
lty_message
Recv
(
lty_msg_exist
M
)
<:
S
)
(
λ
X
,
(
<
??
>
M
X
)
<:
S
)
%
I
name
|
0
.
Proof
.
intros
_
.
apply
lty_le_exist_elim_l
.
Qed
.
Global
Instance
lty_le_from_forall_r
k
(
S
:
lsty
Σ
)
(
M
:
lty
Σ
k
→
lmsg
Σ
)
name
:
AsIdentName
M
name
→
FromForall
(
S
<:
lty_message
Send
(
lty_msg_exist
M
))
(
λ
X
,
S
<:
(
<!!>
M
X
))
%
I
name
|
1
.
Proof
.
intros
_
.
apply
lty_le_exist_elim_r
.
Qed
.
Global
Instance
lty_le_from_exist_l
k
(
M
:
lty
Σ
k
→
lmsg
Σ
)
S
:
FromExist
((
<!!
X
>
M
X
)
<:
S
)
(
λ
X
,
(
<!!>
M
X
)
<:
S
)
%
I
|
0
.
...
...
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