• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • 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
        • C
          • Syntax-for-tools
            • Formalized-subset
            • Mapping-to-language-definition
            • Input-files
            • Compilation-database
            • Printer
            • Output-files
            • Abstract-syntax-operations
            • Implementation-environments
            • Abstract-syntax
            • Concrete-syntax
            • Disambiguation
            • Validation
            • Gcc-builtins
            • Preprocessing
              • Preprocessor
                • Preprocessor-states
                  • Plexeme
                  • Ppstate
                  • Pnumber
                    • Pnumber-count
                    • Pnumber-fix
                    • Pnumberp
                      • Pnumber-case
                      • Pnumber-equiv
                      • Pnumber-number-nondigit
                      • Pnumber-number-digit
                      • Pnumber-number-upcase-p-sign
                      • Pnumber-number-upcase-e-sign
                      • Pnumber-number-locase-p-sign
                      • Pnumber-number-locase-e-sign
                      • Pnumber-dot-digit
                      • Pnumber-digit
                      • Pnumber-number-dot
                      • Pnumber-kind
                    • Macro-info
                    • Macro-add
                    • Init-ppstate
                    • Plexeme-token/newline-p
                    • Newline
                    • Plexeme-option
                    • Macro-info-option
                    • Macro-table
                    • Plexeme+span
                    • Update-ppstate->lexemes-unread
                    • Update-ppstate->lexemes-read
                    • Update-ppstate->lexemes-length
                    • Update-ppstate->chars-unread
                    • Update-ppstate->chars-read
                    • Update-ppstate->version
                    • Update-ppstate->position
                    • Update-ppstate->macros
                    • Update-ppstate->chars-length
                    • Macro-lookup
                    • Update-ppstate->bytes
                    • Update-ppstate->size
                    • Plexeme-token/space-p
                    • Plexeme-tokenp
                    • Ppstate->gcc
                    • Plexeme-list-token/space-p
                    • Ppstate->size
                    • Ppstate->lexemes-unread
                    • Ppstate->lexemes-read
                    • Ppstate->lexemes-length
                    • Ppstate->chars-unread
                    • Ppstate->bytes
                    • Plexeme-list-token/newline-p
                    • Plexeme-list-not-token/newline-p
                    • Ident-macroinfo-alist
                    • Update-ppstate->lexeme
                    • Update-ppstate->char
                    • Ppstate->version
                    • Ppstate->macros
                    • Ppstate->chars-read
                    • Ppstate->chars-length
                    • Plexeme-list-tokenp
                    • Plexeme-list-not-tokenp
                    • Macro-table-init
                    • Ppstate->lexeme
                    • Ppstate->char
                    • Ppstate-fix
                    • Plexeme+span-list
                    • Plexeme-list
                    • Irr-pnumber
                    • Irr-plexeme
                    • Irr-macro-table
                    • Ppstate->position
                  • Preprocessor-printer
                  • Pread-token/newline
                  • Pread-token
                  • Preprocessor-lexer
                  • Pproc-files
                  • Pproc-file
                  • Filepath-plexeme-list-alist-to-filepath-filedata-map
                  • Filepath-plexeme-list-alist
                  • Preprocessor-reader
                  • Preprocessor-messages
                • External-preprocessing
              • Parsing
            • Atc
            • Transformation-tools
            • Language
            • Representation
            • Insertion-sort
            • Pack
          • Soft
          • Bv
          • Imp-language
          • Ethereum
          • Event-macros
          • Java
          • Riscv
          • Bitcoin
          • Zcash
          • Yul
          • ACL2-programming-language
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Axe
          • Lists-light
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Pnumber

    Pnumberp

    Recognizer for pnumber structures.

    Signature
    (pnumberp x) → *

    Definitions and Theorems

    Function: pnumberp

    (defun pnumberp (x)
      (declare (xargs :guard t))
      (and (consp x)
           (cond ((or (atom x) (eq (car x) :digit))
                  (and (true-listp (cdr x))
                       (eql (len (cdr x)) 1)
                       (b* ((digit (std::da-nth 0 (cdr x))))
                         (and (characterp digit)
                              (dec-digit-char-p digit)))))
                 ((eq (car x) :dot-digit)
                  (and (true-listp (cdr x))
                       (eql (len (cdr x)) 1)
                       (b* ((digit (std::da-nth 0 (cdr x))))
                         (and (characterp digit)
                              (dec-digit-char-p digit)))))
                 ((eq (car x) :number-digit)
                  (and (true-listp (cdr x))
                       (eql (len (cdr x)) 2)
                       (b* ((number (std::da-nth 0 (cdr x)))
                            (digit (std::da-nth 1 (cdr x))))
                         (and (pnumberp number)
                              (characterp digit)
                              (dec-digit-char-p digit)))))
                 ((eq (car x) :number-nondigit)
                  (and (true-listp (cdr x))
                       (eql (len (cdr x)) 2)
                       (b* ((number (std::da-nth 0 (cdr x)))
                            (nondigit (std::da-nth 1 (cdr x))))
                         (and (pnumberp number)
                              (characterp nondigit)
                              (str::letter/uscore-char-p nondigit)))))
                 ((eq (car x) :number-locase-e-sign)
                  (and (true-listp (cdr x))
                       (eql (len (cdr x)) 2)
                       (b* ((number (std::da-nth 0 (cdr x)))
                            (sign (std::da-nth 1 (cdr x))))
                         (and (pnumberp number) (signp sign)))))
                 ((eq (car x) :number-upcase-e-sign)
                  (and (true-listp (cdr x))
                       (eql (len (cdr x)) 2)
                       (b* ((number (std::da-nth 0 (cdr x)))
                            (sign (std::da-nth 1 (cdr x))))
                         (and (pnumberp number) (signp sign)))))
                 ((eq (car x) :number-locase-p-sign)
                  (and (true-listp (cdr x))
                       (eql (len (cdr x)) 2)
                       (b* ((number (std::da-nth 0 (cdr x)))
                            (sign (std::da-nth 1 (cdr x))))
                         (and (pnumberp number) (signp sign)))))
                 ((eq (car x) :number-upcase-p-sign)
                  (and (true-listp (cdr x))
                       (eql (len (cdr x)) 2)
                       (b* ((number (std::da-nth 0 (cdr x)))
                            (sign (std::da-nth 1 (cdr x))))
                         (and (pnumberp number) (signp sign)))))
                 (t (and (eq (car x) :number-dot)
                         (and (true-listp (cdr x))
                              (eql (len (cdr x)) 1))
                         (b* ((number (std::da-nth 0 (cdr x))))
                           (pnumberp number)))))))

    Theorem: consp-when-pnumberp

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