Filtering...

top

books/std/lists/top

Included Books

other
(in-package "ACL2")
include-book
(include-book "add-to-set")
include-book
(include-book "append")
include-book
(include-book "all-equalp")
include-book
(include-book "bits-equiv")
include-book
(include-book "duplicity")
include-book
(include-book "equiv")
include-book
(include-book "final-cdr")
include-book
(include-book "flatten")
include-book
(include-book "intersection")
include-book
(include-book "index-of")
include-book
(include-book "intersection")
include-book
(include-book "intersectp")
include-book
(include-book "last")
include-book
(include-book "len")
include-book
(include-book "list-fix")
include-book
(include-book "mfc-utils")
include-book
(include-book "nats-equiv")
include-book
(include-book "no-duplicatesp")
include-book
(include-book "nth")
include-book
(include-book "nthcdr")
include-book
(include-book "prefixp")
include-book
(include-book "remove")
include-book
(include-book "remove-duplicates")
include-book
(include-book "remove1-equal")
include-book
(include-book "repeat")
include-book
(include-book "resize-list")
include-book
(include-book "revappend")
include-book
(include-book "reverse")
include-book
(include-book "rev")
include-book
(include-book "sets")
include-book
(include-book "set-difference")
include-book
(include-book "sublistp")
include-book
(include-book "subseq")
include-book
(include-book "suffixp")
include-book
(include-book "take")
include-book
(include-book "true-listp")
include-book
(include-book "update-nth")
include-book
(include-book "list-defuns")
include-book
(include-book "union")
in-theory
(in-theory (disable (:definition len)
    append
    revappend
    no-duplicatesp-equal
    make-character-list
    take
    nthcdr
    subseq-list
    resize-list
    last
    butlast
    remove
    member
    subsetp
    intersectp
    union-equal
    set-difference-equal
    intersection-equal))
other
(defsection std/lists
  :parents (std)
  :short "A library for reasoning about basic list operations like @(see
append), @(see len), @(see member), @(see take), etc."
  :long "<h3>Introduction</h3>

<p>The @('std/lists') library provides lemmas that are useful when reasoning
about the basic list functions that are built into ACL2, and also defines some
additional functions like @(see list-fix), @(see rev), @(see set-equiv), and so
on.</p>

<p>The @('std/lists') library is based largely on books that were previously
part of the @('unicode') library, but also incorporates ideas from earlier
books such as @('data-structures/list-defthms') and
@('data-structures/number-list-defthms') and also from @('coi/lists').</p>


<h3>Loading the Library</h3>

<p>The recommended way to load the library, especially for beginning to
intermediate ACL2 users, is to simply include the @('top') book, e.g.,</p>

@({ (include-book "std/lists/top" :dir :system) })

<p>This book loads quickly (typically in under a second), gives you everything
we have to offer, and sets up a "recommended" theory.  See below for some
general comments about this theory.</p>

<p>For advanced users, we recommend using the @('top') book if possible.
However, in case you find this book to be too heavy or too incompatible with
your existing developments, the library is mostly arranged in a "buffet"
style that is meant to allow you to load as little or as much as you like.  A
particularly useful book is</p>

@({ (include-book "std/lists/list-defuns" :dir :system) })

<p>which adds the new @('std/lists') functions like @(see list-fix), but
has (almost) no theorems.  Typically, you would then want to (perhaps locally)
include individual books for the particular list functions you are dealing
with.  The books have sensible names, e.g., you might write:</p>

@({
 (include-book "std/lists/list-defuns" :dir :system)
 (local (include-book "std/lists/append" :dir :system))
 (local (include-book "std/lists/rev" :dir :system))
 (local (include-book "std/lists/repeat" :dir :system))
})

<p>The best way to see what books are available is to just run @('ls') in the
@('std/lists') directory.  Unlike the top book, most individual books are meant
to be reasonably unobtrusive, e.g., loading the @('append') book will not
disable @(see append).</p>


<h3>Things to Note</h3>

<p>When you include the @('top') book, note that many basic, built-in ACL2 list
functions like @('append') and @('len') will be @(see disable)d.  As a result,
ACL2 will sometimes not automatically try to induct as it did before.  You may
find that you need to give explicit @(':induct') @(see hints), or explicitly
re-@(see enable) these basic functions during certain theorems.  (On the flip
side, you may also find that you are spending less time trying to prove
theorems using incorrect induction schemes.)</p>

<p>The library introduces a couple of useful @(see equivalence) relations,
namely:</p>

<dl>
<dt>@(see list-equiv)</dt>
<dd>Equivalences of lists based on @(see list-fix).</dd>
<dd>Respected in some way by most list-processing functions.</dd>
</dl>

<dl>
<dt>@(see set-equiv)</dt>
<dd>Equivalence of lists up to @(see member)ship, but ignoring order and @(see
duplicity).</dd>
<dd>@('list-equiv') is a @(see refinement) of @('set-equiv').</dd>
<dd>Respected in a strong way by most "lists as sets" functions, e.g., @(see
subsetp), @(see union$), etc.</dd>
<dd>Preserved by many other ordinary list functions like @(see append), @(see
rev), etc.</dd>
</dl>

<p>These rules allow for some very powerful equivalence-based reasoning.  When
introducing new list-processing functions, it is generally a good idea to
define the appropriate @(see congruence) rules for these relations.</p>")