/usr/share/acl2-8.0dfsg/books/kestrel/top.lisp is in acl2-books-source 8.0dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | ; Kestrel Books
;
; Copyright (C) 2017 Kestrel Institute (http://www.kestrel.edu)
;
; License: A 3-clause BSD license. See the LICENSE file distributed with ACL2.
;
; Author: Alessandro Coglio (coglio@kestrel.edu)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(in-package "ACL2")
(include-book "abnf/top")
(include-book "abnf/examples") ; they have XDOC topics for the manual
(include-book "apt/top")
(include-book "soft/top")
(include-book "utilities/top")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defxdoc kestrel-books
:parents (software-verification)
:short "A collection of ACL2 books contributed mainly by Kestrel Institute."
:long
"<img src='res/kestrel/kestrel-logo.png'/>
<p>
The <b>Kestrel Books</b> are a collection of ACL2 books
contributed mainly by <a href='http://www.kestrel.edu'>Kestrel Institute</a>.
The Kestrel Books are freely available under a liberal license.
Specific copyright, author, and license information
is provided in the individual files and subdirectories.
</p>
<p>
As they become more stable,
parts of the Kestrel Books may be moved
to other locations in the
<see topic='@(url community-books)'>Community Books</see>.
For example,
<see topic='@(url std)'>STD</see> and
<see topic='@(url x86isa)'>X86ISA</see>
include some Kestrel contributions.
</p>
<p>
The Kestrel Books build upon, and are meant to extend and be compatible with,
the ACL2 system code
and various existing libraries such as
<see topic='@(url std)'>STD</see>,
<see topic='@(url fty)'>FTY</see>,
<see topic='@(url seq)'>Seq</see>,
and others.
</p>")
(xdoc::add-resource-directory "kestrel" "images")
|