Recognizer for a4vec structures.
(a4vec-p x) → *
Function:
(defun a4vec-p (x) (declare (xargs :guard t)) (let ((__function__ 'a4vec-p)) (declare (ignorable __function__)) (and (consp x) (b* ((upper (car x)) (lower (cdr x))) (and (true-listp upper) (true-listp lower))))))
Theorem:
(defthm consp-when-a4vec-p (implies (a4vec-p x) (consp x)) :rule-classes :compound-recognizer)