Induct over the structure of two sets simultaneously.
(set-bi-induct x y) → *
Function:
(defun set-bi-induct (x y) (declare (xargs :guard t)) (or (emptyp x) (emptyp y) (let ((left (set-bi-induct (left x) (left y))) (right (set-bi-induct (right x) (right y)))) (declare (ignore left right)) t)))