Filtering...

theorem-name-listp

books/std/system/theorem-name-listp

Included Books

other
(in-package "ACL2")
include-book
(include-book "theorem-symbol-listp")
other
(define theorem-name-listp
  (x (wrld plist-worldp))
  :returns (yes/no booleanp)
  :parents (std/system/event-name-queries)
  :short "Recognize true lists of symbols that name theorems."
  :long (topstring-p "This function is enabled because it is meant as an abbreviation.
    Theorems triggered by this function should be generally avoided.")
  (and (symbol-listp x) (theorem-symbol-listp x wrld))
  :enabled t)