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
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
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
William Mansky
Iris
Commits
19e984a6
Commit
19e984a6
authored
4 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
tweak comments
parent
cd8b29fe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/program_logic/ectx_language.v
+5
-1
5 additions, 1 deletion
theories/program_logic/ectx_language.v
with
5 additions
and
1 deletion
theories/program_logic/ectx_language.v
+
5
−
1
View file @
19e984a6
...
...
@@ -148,7 +148,7 @@ Section ectx_language.
head_step
e
σ
κ
e'
σ'
efs
→
if
a
is
WeaklyAtomic
then
irreducible
e'
σ'
else
is_Some
(
to_val
e'
)
.
(* Some lemmas about this language *)
(*
* *
Some lemmas about this language *)
Lemma
fill_not_val
K
e
:
to_val
e
=
None
→
to_val
(
fill
K
e
)
=
None
.
Proof
.
rewrite
!
eq_None_not_Some
.
eauto
using
fill_val
.
Qed
.
...
...
@@ -158,6 +158,10 @@ Section ectx_language.
Lemma
not_head_reducible
e
σ
:
¬
head_reducible
e
σ
↔
head_irreducible
e
σ
.
Proof
.
unfold
head_reducible
,
head_irreducible
.
naive_solver
.
Qed
.
(** Head redices are unique. In all sensible instances, [comp_ectx K'
empty_ectx] will be the same as [K'], so the conclusion is [K = K' ∧ e =
e'], but we do not require a law to actually prove that so we cannot use
that fact here. *)
Lemma
head_redex_unique
K
K'
e
e'
σ
:
fill
K
e
=
fill
K'
e'
→
head_reducible
e
σ
→
...
...
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