Recognizer for lhprobe-constraint structures.
(lhprobe-constraint-p x) → *
Function:
(defun lhprobe-constraint-p (x) (declare (xargs :guard t)) (let ((__function__ 'lhprobe-constraint-p)) (declare (ignorable __function__)) (and (consp x) (b* ((lhprobe (car x)) (val (cdr x))) (and (lhprobe-p lhprobe) (lhprobe/4vec-p val))))))
Theorem:
(defthm consp-when-lhprobe-constraint-p (implies (lhprobe-constraint-p x) (consp x)) :rule-classes :compound-recognizer)