(aig-restrict-list x sigma) substitutes into a list of AIGs.
(aig-restrict-list x sigma) → aig-list
Function:
(defun aig-restrict-list (x sigma) (declare (xargs :guard t)) (let ((__function__ 'aig-restrict-list)) (declare (ignorable __function__)) (mbe :logic (if (atom x) nil (cons (aig-restrict (car x) sigma) (aig-restrict-list (cdr x) sigma))) :exec (aig-restrict-list-acc x sigma nil))))