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