Recognizer for unreachability-config structures.
(unreachability-config-p x) → *
Function:
(defun unreachability-config-p (x) (declare (xargs :guard t)) (let ((__function__ 'unreachability-config-p)) (declare (ignorable __function__)) (and (consp x) (eq (car x) :unreachability-config) (mbe :logic (and (alistp (cdr x)) (equal (strip-cars (cdr x)) 'nil)) :exec (fty::alist-with-carsp (cdr x) 'nil)) (b* nil t))))
Theorem:
(defthm consp-when-unreachability-config-p (implies (unreachability-config-p x) (consp x)) :rule-classes :compound-recognizer)