Recognizer for trans-state structures.
(trans-statep x) → *
Function:
(defun trans-statep (x) (declare (xargs :guard t)) (let ((__function__ 'trans-statep)) (declare (ignorable __function__)) (and (mbe :logic (and (alistp x) (equal (strip-cars x) '(tops))) :exec (fty::alist-with-carsp x '(tops))) (b* ((tops (cdr (std::da-nth 0 x)))) (toplevel-listp tops)))))
Theorem:
(defthm consp-when-trans-statep (implies (trans-statep x) (consp x)) :rule-classes :compound-recognizer)