(aig-orc2-lists x y) pairwise orc2s together the AIGs from the
lists
(aig-orc2-lists x y) → aig-list
Function:
(defun aig-orc2-lists (x y) (declare (xargs :guard t)) (let ((__function__ 'aig-orc2-lists)) (declare (ignorable __function__)) (if (or (atom x) (atom y)) nil (cons (aig-orc2 (car x) (car y)) (aig-orc2-lists (cdr x) (cdr y))))))