(disjoint-p$ x y) → *
Function:
(defun disjoint-p$ (x y) (declare (xargs :guard (and (true-listp x) (true-listp y)))) (let ((__function__ 'disjoint-p$)) (declare (ignorable __function__)) (disjoint-p x y)))
Theorem:
(defthm rewrite-disjoint-p$-to-disjoint-p (equal (disjoint-p$ x y) (disjoint-p x y)))