Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
cpdt
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
research
cpdt
Commits
3d8c2800
Commit
3d8c2800
authored
Aug 23, 2012
by
Adam Chlipala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Proofreading pass through Chapter 7
parent
a38e22e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
GeneralRec.v
src/GeneralRec.v
+5
-5
No files found.
src/GeneralRec.v
View file @
3d8c2800
...
...
@@ -69,7 +69,7 @@ Section mergeSort.
(
**
Now
,
let
us
try
to
write
the
final
sorting
function
,
using
a
natural
number
"[<=]"
test
[
leb
]
from
the
standard
library
.
[[
Fixpoint
mergeSort
(
ls
:
list
A
)
:
list
A
:=
if
leb
(
length
ls
)
2
if
leb
(
length
ls
)
1
then
ls
else
let
lss
:=
partition
ls
in
merge
(
mergeSort
(
fst
lss
))
(
mergeSort
(
snd
lss
))
.
...
...
@@ -200,7 +200,7 @@ Before writing [mergeSort], we need to settle on a well-founded relation. The r
Hint
Resolve
partition_wf1
partition_wf2
.
(
**
To
write
the
function
definition
itself
,
we
use
the
%
\
index
{
tactics
!
refine
}%
[
refine
]
tactic
as
a
convenient
way
to
write
a
program
that
needs
to
manipulate
proofs
,
without
writing
out
those
proofs
manually
.
We
also
use
a
replacement
[
le_lt_dec
]
for
[
leb
]
that
has
a
more
interesting
dependent
type
.
*
)
(
**
To
write
the
function
definition
itself
,
we
use
the
%
\
index
{
tactics
!
refine
}%
[
refine
]
tactic
as
a
convenient
way
to
write
a
program
that
needs
to
manipulate
proofs
,
without
writing
out
those
proofs
manually
.
We
also
use
a
replacement
[
le_lt_dec
]
for
[
leb
]
that
has
a
more
interesting
dependent
type
.
(
Note
that
we
would
not
be
able
to
complete
the
definition
without
this
change
,
since
[
refine
]
will
generate
subgoals
for
the
[
if
]
branches
based
only
on
the
_
type_
of
the
test
expression
,
not
its
_
value_
.
)
*
)
Definition
mergeSort
:
list
A
->
list
A
.
(
*
begin
thide
*
)
...
...
@@ -582,7 +582,7 @@ Lemma test_mergeSort' : run (mergeSort' leb (1 :: 2 :: 36 :: 8 :: 19 :: nil))
exists
4
;
reflexivity
.
Qed
.
(
**
There
is
another
benefit
of
our
new
[
Fix
]
compared
with
one
we
used
in
the
previous
section
:
we
can
now
write
recursive
functions
that
sometimes
fail
to
terminate
,
without
losing
easy
reasoning
principles
for
the
terminating
cases
.
Consider
this
simple
example
,
which
appeals
to
another
tactic
whose
definition
we
elide
here
.
*
)
(
**
There
is
another
benefit
of
our
new
[
Fix
]
compared
with
the
one
we
used
in
the
previous
section
:
we
can
now
write
recursive
functions
that
sometimes
fail
to
terminate
,
without
losing
easy
reasoning
principles
for
the
terminating
cases
.
Consider
this
simple
example
,
which
appeals
to
another
tactic
whose
definition
we
elide
here
.
*
)
(
*
begin
hide
*
)
Ltac
looper
:=
unfold
leq
in
*;
run
;
...
...
@@ -759,7 +759,7 @@ Definition fib := pred.
(
*
end
thide
*
)
(
*
end
hide
*
)
(
**
%
\
vspace
{-
.
15
in
}%
[[
(
**
%
\
vspace
{-
.
3
in
}%
[[
CoFixpoint
fib
(
n
:
nat
)
:
thunk
nat
:=
match
n
with
|
0
=>
Answer
1
...
...
@@ -904,7 +904,7 @@ The problem has to do with rules for inductive definitions that we still study i
(
**
*
Comparing
the
Alternatives
*
)
(
**
We
have
seen
four
different
approaches
to
encoding
general
recursive
definitions
in
Coq
.
Among
them
there
is
no
clear
champion
that
dominates
the
others
in
every
important
way
.
Instead
,
we
close
the
chapter
by
comparing
the
techniques
along
a
number
of
dimensions
.
Every
technique
allows
recursive
definitions
with
terminaton
arguments
that
go
beyond
Coq
'
s
built
-
in
termination
checking
,
so
we
must
turn
to
subtler
points
to
highlight
differences
.
(
**
We
have
seen
four
different
approaches
to
encoding
general
recursive
definitions
in
Coq
.
Among
them
there
is
no
clear
champion
that
dominates
the
others
in
every
important
way
.
Instead
,
we
close
the
chapter
by
comparing
the
techniques
along
a
number
of
dimensions
.
Every
technique
allows
recursive
definitions
with
terminat
i
on
arguments
that
go
beyond
Coq
'
s
built
-
in
termination
checking
,
so
we
must
turn
to
subtler
points
to
highlight
differences
.
One
useful
property
is
automatic
integration
with
normal
Coq
programming
.
That
is
,
we
would
like
the
type
of
a
function
to
be
the
same
,
whether
or
not
that
function
is
defined
using
an
interesting
recursion
pattern
.
Only
the
first
of
the
four
techniques
,
well
-
founded
recursion
,
meets
this
criterion
.
It
is
also
the
only
one
of
the
four
to
meet
the
related
criterion
that
evaluation
of
function
calls
can
take
place
entirely
inside
Coq
'
s
built
-
in
computation
machinery
.
The
monad
inspired
by
domain
theory
occupies
some
middle
ground
in
this
dimension
,
since
generally
standard
computation
is
enough
to
evaluate
a
term
once
a
high
enough
approximation
level
is
provided
.
...
...
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