Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Iris
stdpp
Commits
36363712
Commit
36363712
authored
Mar 15, 2017
by
Ralf Jung
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://gitlab.mpi-sws.org/robbertkrebbers/coq-stdpp
parents
1de37fd6
e1d492b8
Pipeline
#4068
passed with stage
in 1 minute and 59 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
theories/vector.v
theories/vector.v
+8
-8
No files found.
theories/vector.v
View file @
36363712
...
...
@@ -359,12 +359,12 @@ Qed.
Lemma
vlookup_insert_self
{
A
n
}
i
(
v
:
vec
A
n
)
:
vinsert
i
(
v
!!!
i
)
v
=
v
.
Proof
.
by
induction
v
;
inv_fin
i
;
intros
;
f_equal
/=.
Qed
.
(* Vectors can be inhabited. *)
Global
Instance
vec_nil_inh
T
:
Inhabited
(
vec
T
0
)
:
=
populate
[#].
(** The function [vreplicate n x] generates a vector with length [n] of elements
with value [x]. *)
Fixpoint
vreplicate
{
A
}
(
n
:
nat
)
(
x
:
A
)
:
vec
A
n
:
=
match
n
with
0
=>
[#]
|
S
n
=>
x
:::
vreplicate
n
x
end
.
Global
Instance
vec_inh
T
n
:
Inhabited
T
→
Inhabited
(
vec
T
n
).
Proof
.
intros
HT
.
induction
n
;
[
apply
_
|].
destruct
IHn
as
[
v
].
destruct
HT
as
[
x
].
exact
(
populate
(
x
:::
v
)).
Qed
.
(* Vectors can be inhabited. *)
Global
Instance
vec_0_inhabited
T
:
Inhabited
(
vec
T
0
)
:
=
populate
[#].
Global
Instance
vec_inhabited
`
{
Inhabited
T
}
n
:
Inhabited
(
vec
T
n
)
:
=
populate
(
vreplicate
n
inhabitant
).
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