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
Gaëtan Gilbert
Iris
Commits
5abb67e0
Commit
5abb67e0
authored
5 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
More automated proof of `erased_steps_nsteps`.
parent
326a6f8a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/program_logic/language.v
+4
-5
4 additions, 5 deletions
theories/program_logic/language.v
with
4 additions
and
5 deletions
theories/program_logic/language.v
+
4
−
5
View file @
5abb67e0
...
@@ -119,13 +119,12 @@ Section language.
...
@@ -119,13 +119,12 @@ Section language.
(** [rtc erased_step] and [nsteps] encode the same thing, just packaged
(** [rtc erased_step] and [nsteps] encode the same thing, just packaged
in a different way. *)
in a different way. *)
Lemma
erased_steps_nsteps
ρ1
ρ2
:
Lemma
erased_steps_nsteps
ρ1
ρ2
:
rtc
erased_step
ρ1
ρ2
↔
rtc
erased_step
ρ1
ρ2
↔
∃
n
κs
,
nsteps
n
ρ1
κs
ρ2
.
∃
n
κs
,
nsteps
n
ρ1
κs
ρ2
.
Proof
.
Proof
.
split
.
split
.
-
induction
1
;
firstorder
;
eauto
.
(* FIXME: [naive_solver eauto] should be able to handle this *)
-
induction
1
;
firstorder
eauto
.
(* FIXME: [naive_solver eauto] should be able to handle this *)
-
intros
(
n
&
κs
&
Hsteps
)
.
induction
Hsteps
;
first
done
.
econstructor
;
last
done
.
-
intros
(
n
&
κs
&
Hsteps
)
.
unfold
erased_step
.
eexists
.
done
.
induction
Hsteps
;
eauto
using
rtc_refl
,
rtc_l
.
Qed
.
Qed
.
Lemma
of_to_val_flip
v
e
:
of_val
v
=
e
→
to_val
e
=
Some
v
.
Lemma
of_to_val_flip
v
e
:
of_val
v
=
e
→
to_val
e
=
Some
v
.
...
...
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