Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stdpp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Simon Spies
stdpp
Commits
7d197b3e
Commit
7d197b3e
authored
Aug 06, 2014
by
Robbert Krebbers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Break at 80
parent
a07cc19d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
12 deletions
+3
-12
theories/list.v
theories/list.v
+2
-1
theories/listset_nodup.v
theories/listset_nodup.v
+1
-6
theories/proof_irrel.v
theories/proof_irrel.v
+0
-5
No files found.
theories/list.v
View file @
7d197b3e
...
...
@@ -2283,7 +2283,8 @@ Section Forall2.
Proof
.
intro
.
unfold
sublist_lookup
,
sublist_alter
.
erewrite
<-
Forall2_length
by
eauto
;
intros
;
simplify_option_equality
.
apply Forall2_app_l; rewrite ?take_length_le by lia; auto using Forall2_take.
apply
Forall2_app_l
;
rewrite
?take_length_le
by
lia
;
auto
using
Forall2_take
.
apply
Forall2_app_l
;
erewrite
Forall2_length
,
take_length
,
drop_length
,
<-
Forall2_length
,
Min
.
min_l
by
eauto
with
lia
;
[
done
|].
rewrite
drop_drop
;
auto
using
Forall2_drop
.
...
...
theories/listset_nodup.v
View file @
7d197b3e
...
...
@@ -48,12 +48,7 @@ Qed.
Global
Instance
listset_nodup_elems
:
Elements
A
C
:
=
listset_nodup_car
.
Global
Instance
:
FinCollection
A
C
.
Proof
.
split
.
*
apply
_
.
*
done
.
*
by
intros
[??].
Qed
.
Proof
.
split
.
apply
_
.
done
.
by
intros
[??].
Qed
.
Global
Instance
:
CollectionOps
A
C
.
Proof
.
split
.
...
...
theories/proof_irrel.v
View file @
7d197b3e
...
...
@@ -9,24 +9,20 @@ Instance: ProofIrrel True.
Proof
.
by
intros
[]
[].
Qed
.
Instance
:
ProofIrrel
False
.
Proof
.
by
intros
[].
Qed
.
Instance
and_pi
(
A
B
:
Prop
)
:
ProofIrrel
A
→
ProofIrrel
B
→
ProofIrrel
(
A
∧
B
).
Proof
.
intros
??
[??]
[??].
by
f_equal
.
Qed
.
Instance
prod_pi
(
A
B
:
Type
)
:
ProofIrrel
A
→
ProofIrrel
B
→
ProofIrrel
(
A
*
B
).
Proof
.
intros
??
[??]
[??].
by
f_equal
.
Qed
.
Instance
eq_pi
{
A
}
`
{
∀
x
y
:
A
,
Decision
(
x
=
y
)}
(
x
y
:
A
)
:
ProofIrrel
(
x
=
y
).
Proof
.
intros
??.
apply
eq_proofs_unicity
.
intros
x'
y'
.
destruct
(
decide
(
x'
=
y'
))
;
tauto
.
Qed
.
Instance
Is_true_pi
(
b
:
bool
)
:
ProofIrrel
(
Is_true
b
).
Proof
.
destruct
b
;
simpl
;
apply
_
.
Qed
.
Lemma
sig_eq_pi
`
(
P
:
A
→
Prop
)
`
{
∀
x
,
ProofIrrel
(
P
x
)}
(
x
y
:
sig
P
)
:
x
=
y
↔
`
x
=
`
y
.
Proof
.
...
...
@@ -34,7 +30,6 @@ Proof.
destruct
x
as
[
x
Hx
],
y
as
[
y
Hy
]
;
simpl
;
intros
;
subst
.
f_equal
.
apply
proof_irrel
.
Qed
.
Lemma
exists_proj1_pi
`
(
P
:
A
→
Prop
)
`
{
∀
x
,
ProofIrrel
(
P
x
)}
(
x
:
sig
P
)
p
:
`
x
↾
p
=
x
.
Proof
.
by
apply
(
sig_eq_pi
_
).
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