Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Rodolphe Lepigre
stdpp
Commits
1d45f474
Commit
1d45f474
authored
Feb 24, 2019
by
Robbert Krebbers
Browse files
Monotonicity for `Acc`.
parent
7b4dc84f
Changes
1
Show whitespace changes
Inline
Side-by-side
theories/relations.v
View file @
1d45f474
...
...
@@ -315,6 +315,10 @@ Section subrel.
End
subrel
.
(** * Theorems on well founded relations *)
Lemma
Acc_impl
{
A
}
(
R1
R2
:
relation
A
)
x
:
Acc
R1
x
→
(
∀
y1
y2
,
R2
y1
y2
→
R1
y1
y2
)
→
Acc
R2
x
.
Proof
.
induction
1
;
constructor
;
naive_solver
.
Qed
.
Notation
wf
:
=
well_founded
.
Definition
wf_guard
`
{
R
:
relation
A
}
(
n
:
nat
)
(
wfR
:
wf
R
)
:
wf
R
:
=
Acc_intro_generator
n
wfR
.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment