• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • Soft
        • C
          • Syntax-for-tools
          • Atc
          • Language
            • Abstract-syntax
            • Integer-ranges
            • Implementation-environments
            • Dynamic-semantics
            • Static-semantics
            • Grammar
            • Integer-formats
            • Types
            • Portable-ascii-identifiers
            • Values
            • Integer-operations
            • Computation-states
            • Object-designators
            • Operations
            • Errors
            • Tag-environments
            • Function-environments
            • Character-sets
              • Source-character-set
              • Exec-character-set
                • Exec-char-recognizer+fixer+mappings+fixtype
                • Ascii-basic-exec-char
                • Ascii-basic-exec-charp
                • Ascii-to-exec-char-number
                • Ascii-basic-exec-char-fix
                • Ext-exec-charp
                  • Basic-exec-charp
              • Flexible-array-member-removal
              • Arithmetic-operations
              • Pointer-operations
              • Bytes
              • Keywords
              • Real-operations
              • Array-operations
              • Scalar-operations
              • Structure-operations
            • Representation
            • Transformation-tools
            • Insertion-sort
            • Pack
          • Bv
          • Imp-language
          • Event-macros
          • Java
          • Bitcoin
          • Ethereum
          • Yul
          • Zcash
          • ACL2-programming-language
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Lists-light
          • Axe
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Exec-character-set

    Ext-exec-charp

    Recognize the extended execution characters.

    Signature
    (ext-exec-charp x) → yes/no
    Returns
    yes/no — Type (booleanp yes/no).

    These are the non-basic exec-characters.

    Definitions and Theorems

    Function: ext-exec-charp

    (defun ext-exec-charp (x)
      (declare (xargs :guard t))
      (let ((__function__ 'ext-exec-charp))
        (declare (ignorable __function__))
        (and (exec-charp x)
             (not (basic-exec-charp x)))))

    Theorem: booleanp-of-ext-exec-charp

    (defthm booleanp-of-ext-exec-charp
      (b* ((yes/no (ext-exec-charp x)))
        (booleanp yes/no))
      :rule-classes :rewrite)

    Theorem: exec-charp-alt-def

    (defthm exec-charp-alt-def
      (equal (exec-charp x)
             (or (basic-exec-charp x)
                 (ext-exec-charp x))))