Recognizer for var-defstatus structures.
(var-defstatusp x) → *
Function:
(defun var-defstatusp (x) (declare (xargs :guard t)) (let ((__function__ 'var-defstatusp)) (declare (ignorable __function__)) (and (consp x) (cond ((or (atom x) (eq (car x) :undefined)) (and (true-listp (cdr x)) (eql (len (cdr x)) 0) (b* nil t))) ((eq (car x) :tentative) (and (true-listp (cdr x)) (eql (len (cdr x)) 0) (b* nil t))) (t (and (eq (car x) :defined) (and (true-listp (cdr x)) (eql (len (cdr x)) 0)) (b* nil t)))))))
Theorem:
(defthm consp-when-var-defstatusp (implies (var-defstatusp x) (consp x)) :rule-classes :compound-recognizer)