• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
      • Ipasir
      • Aignet
      • Aig
      • Satlink
      • Truth
      • Ubdds
        • Equal-by-eval-bdds
        • Ubdd-constructors
        • Eval-bdd
        • Ubddp
        • Ubdd-fix
        • Q-sat
        • Bdd-sat-dfs
        • Eval-bdd-list
        • Qcdr
          • Qcar
          • Q-sat-any
          • Canonicalize-to-q-ite
          • Ubdd-listp
          • Qcons
        • Bdd
        • Faig
        • Bed
        • 4v
      • Projects
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Testing-utilities
      • Math
    • Ubdds

    Qcdr

    The "false branch" of a UBDD.

    (qcdr x) returns the false branch of the UBDD x.

    For a compound UBDD, i.e., a . b), we simply return b. But for the atomic UBDDs t and nil, which represent the constant functions t and nil, this is the identity function.

    Definitions and Theorems

    Function: qcdr$inline

    (defun qcdr$inline (x)
           (declare (xargs :guard t))
           (if (consp x) (cdr x) x))