Filtering...

types

books/build2/types
other
(in-package "BUILD2")
other
(include-book "centaur/fty/top" :dir :system)
other
(defprod book-dep
  :short "A dependency on another book."
  ((path stringp
     "Path to the book (without .lisp extension).") (localp booleanp
      :default nil
      "Was this inside LOCAL?"))
  :tag :book-dep)
other
(deflist book-dep-list
  :elt-type book-dep
  :true-listp t)
other
(defprod certinfo
  :short "Information needed to certify a book."
  ((bookdeps book-dep-list-p
     :default nil
     "Books this book depends on (from include-book).") (srcdeps string-listp
      :default nil
      "Source files (.lisp, .acl2 files)."))
  :tag :certinfo)
other
(defalist certinfo-alist
  :key-type stringp
  :val-type certinfo
  :true-listp t)