(sd-problemlist-p x) recognizes lists where every element satisfies sd-problem-p.
(sd-problemlist-p x) → std::bool
This is an ordinary deflist. It is
"loose" in that it does not care whether
Function:
(defun sd-problemlist-p (x) (declare (xargs :guard t)) (let ((__function__ 'sd-problemlist-p)) (declare (ignorable __function__)) (if (consp x) (and (sd-problem-p (car x)) (sd-problemlist-p (cdr x))) t)))