Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Iris
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
Monitor
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
Iris
Merge requests
!276
Add stuck_fill lemma.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add stuck_fill lemma.
haidang/iris:stuck_fill
into
master
Overview
2
Commits
2
Pipelines
0
Changes
1
All threads resolved!
Hide all comments
Merged
Hai Dang
requested to merge
haidang/iris:stuck_fill
into
master
5 years ago
Overview
2
Commits
2
Pipelines
0
Changes
1
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Compare
master
version 1
6645a150
5 years ago
master (base)
and
latest version
latest version
0df83ac0
2 commits,
5 years ago
version 1
6645a150
1 commit,
5 years ago
1 file
+
4
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
theories/program_logic/language.v
+
4
−
0
Options
@@ -161,6 +161,10 @@ Section language.
to_val
e
=
None
→
irreducible
e
σ
→
irreducible
(
K
e
)
σ
.
Proof
.
rewrite
-!
not_reducible
.
naive_solver
eauto
using
reducible_fill
.
Qed
.
Lemma
stuck_fill
`{
!@
LanguageCtx
Λ
K
}
e
σ
:
stuck
e
σ
→
stuck
(
K
e
)
σ
.
Proof
.
intros
[??]
.
split
.
by
apply
fill_not_val
.
by
apply
irreducible_fill
.
Qed
.
Lemma
step_Permutation
(
t1
t1'
t2
:
list
(
expr
Λ
))
κ
σ1
σ2
:
t1
≡
ₚ
t1'
→
step
(
t1
,
σ1
)
κ
(
t2
,
σ2
)
→
∃
t2'
,
t2
≡
ₚ
t2'
∧
step
(
t1'
,
σ1
)
κ
(
t2'
,
σ2
)
.
Proof
.
Loading