Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stdpp
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
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
stdpp
Commits
98e61928
Commit
98e61928
authored
10 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Strengthen induction lemma for reflexive transitive closure.
parent
6907a08a
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/ars.v
+9
-6
9 additions, 6 deletions
theories/ars.v
with
9 additions
and
6 deletions
theories/ars.v
+
9
−
6
View file @
98e61928
...
@@ -61,19 +61,22 @@ Section rtc.
...
@@ -61,19 +61,22 @@ Section rtc.
Lemma
rtc_inv
x
z
:
rtc
R
x
z
→
x
=
z
∨
∃
y
,
R
x
y
∧
rtc
R
y
z
.
Lemma
rtc_inv
x
z
:
rtc
R
x
z
→
x
=
z
∨
∃
y
,
R
x
y
∧
rtc
R
y
z
.
Proof
.
inversion_clear
1
;
eauto
.
Qed
.
Proof
.
inversion_clear
1
;
eauto
.
Qed
.
Lemma
rtc_ind_r_weak
(
P
:
A
→
A
→
Prop
)
Lemma
rtc_ind_r
(
P
:
A
→
A
→
Prop
)
(
Prefl
:
∀
x
,
P
x
x
)
(
Pstep
:
∀
x
y
z
,
rtc
R
x
y
→
R
y
z
→
P
x
y
→
P
x
z
)
:
(
Prefl
:
∀
x
,
P
x
x
)
(
Pstep
:
∀
x
y
z
,
rtc
R
x
y
→
R
y
z
→
P
x
y
→
P
x
z
)
:
∀
x
z
,
rtc
R
x
z
→
P
x
z
.
∀
x
z
,
rtc
R
x
z
→
P
x
z
.
Proof
.
Proof
.
cut
(
∀
y
z
,
rtc
R
y
z
→
∀
x
,
rtc
R
x
y
→
P
x
y
→
P
x
z
)
.
cut
(
∀
y
z
,
rtc
R
y
z
→
∀
x
,
rtc
R
x
y
→
P
x
y
→
P
x
z
)
.
{
eauto
using
rtc_refl
.
}
{
eauto
using
rtc_refl
.
}
induction
1
;
eauto
using
rtc_r
.
induction
1
;
eauto
using
rtc_r
.
Qed
.
Qed
.
Lemma
rtc_ind_r
(
P
:
A
→
Prop
)
(
x
:
A
)
(
Prefl
:
P
x
)
(
Pstep
:
∀
y
z
,
rtc
R
x
y
→
R
y
z
→
P
y
→
P
z
)
:
∀
z
,
rtc
R
x
z
→
P
z
.
Proof
.
intros
z
p
.
revert
x
z
p
Prefl
Pstep
.
refine
(
rtc_ind_r_weak
_
_
_);
eauto
.
Qed
.
Lemma
rtc_inv_r
x
z
:
rtc
R
x
z
→
x
=
z
∨
∃
y
,
rtc
R
x
y
∧
R
y
z
.
Lemma
rtc_inv_r
x
z
:
rtc
R
x
z
→
x
=
z
∨
∃
y
,
rtc
R
x
y
∧
R
y
z
.
Proof
.
revert
x
z
.
apply
rtc_ind_r
;
eauto
.
Qed
.
Proof
.
revert
z
.
apply
rtc_ind_r
;
eauto
.
Qed
.
Lemma
nsteps_once
x
y
:
R
x
y
→
nsteps
R
1
x
y
.
Lemma
nsteps_once
x
y
:
R
x
y
→
nsteps
R
1
x
y
.
Proof
.
eauto
with
ars
.
Qed
.
Proof
.
eauto
with
ars
.
Qed
.
...
...
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