• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
      • Ipasir
      • Aignet
      • Aig
      • Satlink
      • Truth
      • Ubdds
      • Bdd
      • Faig
        • Faig-constructors
        • Faig-onoff-equiv
        • Faig-purebool-p
        • Faig-alist-equiv
        • Faig-equiv
        • Faig-eval
        • Faig-restrict
          • Faig-restrict-thms
          • Faig-restrict-alist
          • Faig-restrict-alists
          • Faig-fix
          • Faig-partial-eval
          • Faig-compose
          • Faig-compose-alist
          • Patbind-faig
          • Faig-constants
        • Bed
        • 4v
      • Projects
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Testing-utilities
      • Math
    • Faig-restrict

    Faig-restrict-alists

    (faig-restrict-alists x sigma) substitutes into a list of FAIG alists.

    Signature
    (faig-restrict-alists x sigma) → *

    Definitions and Theorems

    Function: faig-restrict-alists

    (defun faig-restrict-alists (x sigma)
           (declare (xargs :guard t))
           (let ((__function__ 'faig-restrict-alists))
                (declare (ignorable __function__))
                (if (atom x)
                    nil
                    (cons (faig-restrict-alist (car x) sigma)
                          (faig-restrict-alists (cdr x) sigma)))))