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
Tej Chajed
stdpp
Commits
e37edc7e
Commit
e37edc7e
authored
Jan 17, 2018
by
Robbert Krebbers
Browse files
Relate `forallb`/`existsb` to `Forall`/`Exists`.
parent
b6d58ca6
Changes
1
Hide whitespace changes
Inline
Side-by-side
theories/list.v
View file @
e37edc7e
...
...
@@ -2331,6 +2331,11 @@ Section Forall_Exists.
end
.
End
Forall_Exists
.
Lemma
forallb_True
(
f
:
A
→
bool
)
xs
:
forallb
f
xs
↔
Forall
f
xs
.
Proof
.
split
.
induction
xs
;
naive_solver
.
induction
1
;
naive_solver
.
Qed
.
Lemma
existb_True
(
f
:
A
→
bool
)
xs
:
existsb
f
xs
↔
Exists
f
xs
.
Proof
.
split
.
induction
xs
;
naive_solver
.
induction
1
;
naive_solver
.
Qed
.
Lemma
replicate_as_Forall
(
x
:
A
)
n
l
:
replicate
n
x
=
l
↔
length
l
=
n
∧
Forall
(
x
=)
l
.
Proof
.
rewrite
replicate_as_elem_of
,
Forall_forall
.
naive_solver
.
Qed
.
...
...
Write
Preview
Markdown
is supported
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