Included Books
other
(in-package "ACL2")
include-book
(include-book "pseudo-tests-and-callsp")
other
(defsection pseudo-tests-and-calls-listp :parents (system-utilities-non-built-in) :short "Recognize true lists of well-formed @('tests-and-calls') records." (defun pseudo-tests-and-calls-listp (x) (declare (xargs :guard t)) (cond ((atom x) (null x)) (t (and (pseudo-tests-and-callsp (car x)) (pseudo-tests-and-calls-listp (cdr x)))))))