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
R
rt-proofs
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sophie Quinton
rt-proofs
Commits
839079c7
Commit
839079c7
authored
Apr 03, 2017
by
Felipe Cerqueira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add more lemmas about pick
parent
3a2bf991
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
127 additions
and
61 deletions
+127
-61
util/pick.v
util/pick.v
+127
-61
No files found.
util/pick.v
View file @
839079c7
...
@@ -53,10 +53,8 @@ Notation "[ 'pick-max' x < N | P ]" :=
...
@@ -53,10 +53,8 @@ Notation "[ 'pick-max' x < N | P ]" :=
(
pick_max
N
(
fun
x
:
'
I_N
=>
P
%
B
))
(
pick_max
N
(
fun
x
:
'
I_N
=>
P
%
B
))
(
at
level
0
,
x
ident
,
only
parsing
)
:
form_scope
.
(
at
level
0
,
x
ident
,
only
parsing
)
:
form_scope
.
(** Lemmas *)
(** Lemmas
about pick_any
*)
(* First, we show that any property P of (pick_any n p) can be proven by showing that
P holds for any number < n that satisfies p. *)
Section
PickAny
.
Section
PickAny
.
Variable
n
:
nat
.
Variable
n
:
nat
.
...
@@ -68,6 +66,8 @@ Section PickAny.
...
@@ -68,6 +66,8 @@ Section PickAny.
Hypothesis
HOLDS
:
forall
x
,
p
x
->
P
x
.
Hypothesis
HOLDS
:
forall
x
,
p
x
->
P
x
.
(* First, we show that any property P of (pick_any n p) can be proven by showing
that P holds for any number < n that satisfies p. *)
Lemma
pick_any_holds
:
P
(
pick_any
n
p
).
Lemma
pick_any_holds
:
P
(
pick_any
n
p
).
Proof
.
Proof
.
rewrite
/
pick_any
/
default0
.
rewrite
/
pick_any
/
default0
.
...
@@ -79,8 +79,7 @@ Section PickAny.
...
@@ -79,8 +79,7 @@ Section PickAny.
End
PickAny
.
End
PickAny
.
(* Next, we show that any property P of (pick_min n p) can be proven by showing that
(** Lemmas about pick_min *)
P holds for the smallest number < n that satisfies p. *)
Section
PickMin
.
Section
PickMin
.
Variable
n
:
nat
.
Variable
n
:
nat
.
...
@@ -88,21 +87,53 @@ Section PickMin.
...
@@ -88,21 +87,53 @@ Section PickMin.
Variable
P
:
nat
->
Prop
.
Variable
P
:
nat
->
Prop
.
(* Assume that there is some number < n that satisfies p. *)
Hypothesis
EX
:
exists
x
:
'
I_n
,
p
x
.
Hypothesis
EX
:
exists
x
:
'
I_n
,
p
x
.
Section
Bound
.
(* First, we show that (pick_min n p) < n. *)
Lemma
pick_min_ltn
:
pick_min
n
p
<
n
.
Proof
.
rewrite
/
pick_min
/
odflt
/
oapp
.
case
:
pickP
.
{
move
=>
x
/
andP
[
PRED
/
forallP
ALL
].
by
rewrite
/
default0
.
}
{
intros
NONE
;
red
in
NONE
;
exfalso
.
move
:
EX
=>
[
x
PRED
]
;
clear
EX
.
set
argmin
:
=
arg_min
x
p
id
.
specialize
(
NONE
argmin
).
suff
ARGMIN
:
(
pred_min_nat
n
p
)
argmin
by
rewrite
ARGMIN
in
NONE
.
rewrite
/
argmin
;
case
:
arg_minP
;
first
by
done
.
intros
y
Py
MINy
.
apply
/
andP
;
split
;
first
by
done
.
by
apply
/
forallP
;
intros
y0
;
apply
/
implyP
;
intros
Py0
;
apply
MINy
.
}
Qed
.
End
Bound
.
Section
Minimum
.
Hypothesis
MIN
:
Hypothesis
MIN
:
forall
x
,
forall
x
,
p
x
->
p
x
->
x
<
n
->
(
forall
y
,
p
y
->
x
<=
y
)
->
(
forall
y
,
p
y
->
x
<=
y
)
->
P
x
.
P
x
.
(* Next, we show that any property P of (pick_min n p) can be proven by showing
that P holds for the smallest number < n that satisfies p. *)
Lemma
pick_min_holds
:
P
(
pick_min
n
p
).
Lemma
pick_min_holds
:
P
(
pick_min
n
p
).
Proof
.
Proof
.
rewrite
/
pick_min
/
odflt
/
oapp
.
rewrite
/
pick_min
/
odflt
/
oapp
.
case
:
pickP
.
case
:
pickP
.
{
{
move
=>
x
/
andP
[
PRED
/
forallP
ALL
].
move
=>
x
/
andP
[
PRED
/
forallP
ALL
].
apply
MIN
;
first
by
done
.
apply
MIN
;
try
(
by
done
)
.
by
intros
y
Py
;
specialize
(
ALL
y
)
;
move
:
ALL
=>
/
implyP
ALL
;
apply
ALL
.
by
intros
y
Py
;
specialize
(
ALL
y
)
;
move
:
ALL
=>
/
implyP
ALL
;
apply
ALL
.
}
}
{
{
...
@@ -118,10 +149,11 @@ Section PickMin.
...
@@ -118,10 +149,11 @@ Section PickMin.
}
}
Qed
.
Qed
.
End
Minimum
.
End
PickMin
.
End
PickMin
.
(* Next, we show that any property P of (pick_max n p) can be proven by showing that
(** Lemmas about pick_max *)
P holds for the largest number < n that satisfies p. *)
Section
PickMax
.
Section
PickMax
.
Variable
n
:
nat
.
Variable
n
:
nat
.
...
@@ -129,21 +161,53 @@ Section PickMax.
...
@@ -129,21 +161,53 @@ Section PickMax.
Variable
P
:
nat
->
Prop
.
Variable
P
:
nat
->
Prop
.
(* Assume that there is some number < n that satisfies p. *)
Hypothesis
EX
:
exists
x
:
'
I_n
,
p
x
.
Hypothesis
EX
:
exists
x
:
'
I_n
,
p
x
.
Section
Bound
.
(* First, we show that (pick_max n p) < n. *)
Lemma
pick_max_ltn
:
pick_max
n
p
<
n
.
Proof
.
rewrite
/
pick_max
/
odflt
/
oapp
.
case
:
pickP
.
{
move
=>
x
/
andP
[
PRED
/
forallP
ALL
].
by
rewrite
/
default0
.
}
{
intros
NONE
;
red
in
NONE
;
exfalso
.
move
:
EX
=>
[
x
PRED
]
;
clear
EX
.
set
argmax
:
=
arg_max
x
p
id
.
specialize
(
NONE
argmax
).
suff
ARGMAX
:
(
pred_max_nat
n
p
)
argmax
by
rewrite
ARGMAX
in
NONE
.
rewrite
/
argmax
;
case
:
arg_maxP
;
first
by
done
.
intros
y
Py
MAXy
.
apply
/
andP
;
split
;
first
by
done
.
by
apply
/
forallP
;
intros
y0
;
apply
/
implyP
;
intros
Py0
;
apply
MAXy
.
}
Qed
.
End
Bound
.
Section
Maximum
.
Hypothesis
MAX
:
Hypothesis
MAX
:
forall
x
,
forall
x
,
p
x
->
p
x
->
x
<
n
->
(
forall
y
,
p
y
->
x
>=
y
)
->
(
forall
y
,
p
y
->
x
>=
y
)
->
P
x
.
P
x
.
(* Next, we show that any property P of (pick_max n p) can be proven by showing that
P holds for the largest number < n that satisfies p. *)
Lemma
pick_max_holds
:
P
(
pick_max
n
p
).
Lemma
pick_max_holds
:
P
(
pick_max
n
p
).
Proof
.
Proof
.
rewrite
/
pick_max
/
odflt
/
oapp
.
rewrite
/
pick_max
/
odflt
/
oapp
.
case
:
pickP
.
case
:
pickP
.
{
{
move
=>
x
/
andP
[
PRED
/
forallP
ALL
].
move
=>
x
/
andP
[
PRED
/
forallP
ALL
].
apply
MAX
;
first
by
done
.
apply
MAX
;
try
(
by
done
)
.
by
intros
y
Py
;
specialize
(
ALL
y
)
;
move
:
ALL
=>
/
implyP
ALL
;
apply
ALL
.
by
intros
y
Py
;
specialize
(
ALL
y
)
;
move
:
ALL
=>
/
implyP
ALL
;
apply
ALL
.
}
}
{
{
...
@@ -159,4 +223,6 @@ Section PickMax.
...
@@ -159,4 +223,6 @@ Section PickMax.
}
}
Qed
.
Qed
.
End
Maximum
.
End
PickMax
.
End
PickMax
.
\ No newline at end of file
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