• Top
    • Documentation
    • Books
    • Boolean-reasoning
      • Ipasir
      • Aignet
      • Aig
      • Satlink
      • Truth
      • Ubdds
      • Bdd
      • Faig
      • Bed
        • Bed-op-p
          • Bed-op-eval
          • Bed-op-fix
          • Bed-op-xor
            • Bed-op-true
            • Bed-op-orc2
            • Bed-op-orc1
            • Bed-op-not2
            • Bed-op-not1
            • Bed-op-nor
            • Bed-op-nand
            • Bed-op-ior
            • Bed-op-false
            • Bed-op-eqv
            • Bed-op-arg2
            • Bed-op-arg1
            • Bed-op-andc2
            • Bed-op-andc1
            • Bed-op-and
            • Bed-op-fix$
          • Bed-from-aig
          • Bed-mk1
          • Bed-eval
          • Up
          • Aig-translation
        • 4v
      • Projects
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Bed-op-p

    Bed-op-xor

    Signature
    (bed-op-xor) → op
    Returns
    op — Type (bed-op-p op).

    Definitions and Theorems

    Function: bed-op-xor$inline

    (defun bed-op-xor$inline nil
      (declare (xargs :guard t))
      (let ((__function__ 'bed-op-xor))
        (declare (ignorable __function__))
        6))

    Theorem: bed-op-p-of-bed-op-xor

    (defthm bed-op-p-of-bed-op-xor
      (b* ((op (bed-op-xor$inline)))
        (bed-op-p op))
      :rule-classes :rewrite)

    Theorem: bed-op-eval-of-xor

    (defthm bed-op-eval-of-xor
      (equal (bed-op-eval (bed-op-xor) x y)
             (b-xor x y)))