• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • Proof-checker-array
      • Soft
      • C
      • Farray
      • Rp-rewriter
      • Instant-runoff-voting
      • Imp-language
      • Sidekick
      • Leftist-trees
      • Java
      • Taspi
      • Bitcoin
      • Riscv
      • Des
      • Ethereum
      • X86isa
      • Sha-2
      • Yul
      • Zcash
      • Proof-checker-itp13
      • Regex
      • ACL2-programming-language
      • Json
      • Jfkr
      • Equational
      • Cryptography
      • Poseidon
      • Where-do-i-place-my-book
      • Axe
      • Bigmems
      • Builtins
      • Execloader
      • Aleo
      • Solidity
        • Values
          • Integer-values
          • Boolean-values
            • Bool
              • Boolp
                • Bool-fix
                • Bool-equiv
                • Make-bool
                • Change-bool
                • Bool->get
              • Boolean-operations
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Bool

    Boolp

    Recognizer for bool structures.

    Signature
    (boolp x) → *

    Definitions and Theorems

    Function: boolp

    (defun boolp (x)
      (declare (xargs :guard t))
      (let ((__function__ 'boolp))
        (declare (ignorable __function__))
        (and (consp x)
             (eq (car x) :bool)
             (true-listp (cdr x))
             (eql (len (cdr x)) 1)
             (b* ((get (std::da-nth 0 (cdr x))))
               (booleanp get)))))

    Theorem: consp-when-boolp

    (defthm consp-when-boolp
      (implies (boolp x) (consp x))
      :rule-classes :compound-recognizer)