Recognizer for prune-config structures.
(prune-config-p x) → *
Function:
(defun prune-config-p (x) (declare (xargs :guard t)) (let ((__function__ 'prune-config-p)) (declare (ignorable __function__)) (and (consp x) (eq (car x) :prune-config) (b* ((gatesimp (cdr x))) (gatesimp-p gatesimp)))))
Theorem:
(defthm consp-when-prune-config-p (implies (prune-config-p x) (consp x)) :rule-classes :compound-recognizer)