Recognizer for committee structures.
(committeep x) → *
Function:
(defun committeep (x) (declare (xargs :guard t)) (let ((__function__ 'committeep)) (declare (ignorable __function__)) (and (mbe :logic (and (alistp x) (equal (strip-cars x) '(addresses))) :exec (fty::alist-with-carsp x '(addresses))) (b* ((addresses (cdr (std::da-nth 0 x)))) (and (address-setp addresses) (not (emptyp addresses)))))))
Theorem:
(defthm consp-when-committeep (implies (committeep x) (consp x)) :rule-classes :compound-recognizer)