Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris-coq
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
Michael Sammler
iris-coq
Commits
94922d09
Commit
94922d09
authored
7 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
make strongly_atomic_atomic more convenient
parent
e76ca2de
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
theories/heap_lang/tactics.v
+1
-3
1 addition, 3 deletions
theories/heap_lang/tactics.v
theories/program_logic/language.v
+3
-3
3 additions, 3 deletions
theories/program_logic/language.v
with
4 additions
and
6 deletions
theories/heap_lang/tactics.v
+
1
−
3
View file @
94922d09
...
...
@@ -195,9 +195,7 @@ Definition is_atomic (e : expr) :=
end
.
Lemma
is_atomic_correct
s
e
:
is_atomic
e
→
Atomic
s
(
to_expr
e
)
.
Proof
.
enough
(
is_atomic
e
→
Atomic
StronglyAtomic
(
to_expr
e
))
.
{
destruct
s
;
auto
using
strongly_atomic_atomic
.
}
intros
He
.
apply
ectx_language_atomic
.
intros
He
.
apply
strongly_atomic_atomic
,
ectx_language_atomic
.
-
intros
σ
e'
σ'
ef
Hstep
;
simpl
in
*.
revert
Hstep
.
destruct
e
=>
//=
;
repeat
(
simplify_eq
/=
;
case_match
=>
//
);
inversion
1
;
simplify_eq
/=
;
rewrite
?to_of_val
;
eauto
.
...
...
This diff is collapsed.
Click to expand it.
theories/program_logic/language.v
+
3
−
3
View file @
94922d09
...
...
@@ -109,9 +109,9 @@ Section language.
Global
Instance
of_val_inj
:
Inj
(
=
)
(
=
)
(
@
of_val
Λ
)
.
Proof
.
by
intros
v
v'
Hv
;
apply
(
inj
Some
);
rewrite
-!
to_of_val
Hv
.
Qed
.
Lemma
strongly_atomic_atomic
e
:
Atomic
StronglyAtomic
e
→
Atomic
WeaklyAtomic
e
.
Proof
.
unfold
Atomic
.
eauto
using
val_irreducible
.
Qed
.
Lemma
strongly_atomic_atomic
e
a
:
Atomic
StronglyAtomic
e
→
Atomic
a
e
.
Proof
.
unfold
Atomic
.
destruct
a
;
eauto
using
val_irreducible
.
Qed
.
Lemma
reducible_fill
`{
LanguageCtx
Λ
K
}
e
σ
:
to_val
e
=
None
→
reducible
(
K
e
)
σ
→
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