Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
examples
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
Iris
examples
Merge requests
!67
bump to Coq 8.20
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
bump to Coq 8.20
coqbump
into
master
Overview
0
Commits
4
Pipelines
5
Changes
1
Merged
Ralf Jung
requested to merge
coqbump
into
master
5 months ago
Overview
0
Commits
4
Pipelines
5
Changes
1
Expand
0
0
Merge request reports
Viewing commit
9943d6b5
Prev
Next
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
9943d6b5
fix deprecation warning
· 9943d6b5
Ralf Jung
authored
5 months ago
theories/logrel/F_mu_ref_conc/typing.v
+
2
−
2
Options
@@ -147,7 +147,7 @@ Proof.
match
goal
with
H
:
context
[_
→
_
⊢
ₜ
_
:
_]
|
-
_
=>
rename
H
into
IH
end
.
specialize
(
IH
(
subst
(
ren
(
+
1
))
<$>
Γ1
)
(
subst
(
ren
(
+
1
))
<$>
Γ2
)
(
subst
(
ren
(
+
1
))
<$>
ξ
))
.
rewrite
?
map_
length
in
IH
.
rewrite
?length
_map
in
IH
.
repeat
rewrite
fmap_app
.
apply
IH
.
by
repeat
rewrite
fmap_app
.
-
econstructor
;
eauto
.
@@ -155,7 +155,7 @@ Proof.
match
goal
with
H
:
context
[_
→
_
⊢
ₜ
_
:
TExist
?t
]
|
-
_
=>
rename
t
into
τ
end
.
specialize
(
IH
(
τ
::
(
subst
(
ren
(
+
1
))
<$>
Γ1
))
(
subst
(
ren
(
+
1
))
<$>
Γ2
)
(
subst
(
ren
(
+
1
))
<$>
ξ
))
.
asimpl
in
IH
.
rewrite
?
map_
length
in
IH
.
asimpl
in
IH
.
rewrite
?length
_map
in
IH
.
repeat
rewrite
fmap_app
.
apply
IH
.
by
repeat
rewrite
fmap_app
.
Qed
.
Loading