• 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
        • Bv
        • Imp-language
        • Event-macros
        • Java
        • Bitcoin
        • Ethereum
        • Yul
          • Transformations
          • Language
            • Abstract-syntax
            • Dynamic-semantics
            • Concrete-syntax
            • Static-soundness
            • Static-semantics
            • Errors
              • Reserr-limitp
              • Error-info-wfp
              • Reserr-nonlimitp
            • Yul-json
          • 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
    • Errors

    Reserr-nonlimitp

    Recognize non-limit errors.

    Signature
    (reserr-nonlimitp x) → yes/no
    Returns
    yes/no — Type (booleanp yes/no).

    This recognizes all the errors that are not recognized by reserr-limitp. See that recognizer's documentation.

    Definitions and Theorems

    Function: reserr-nonlimitp

    (defun reserr-nonlimitp (x)
      (declare (xargs :guard t))
      (let ((__function__ 'reserr-nonlimitp))
        (declare (ignorable __function__))
        (and (reserrp x)
             (not (reserr-limitp x)))))

    Theorem: booleanp-of-reserr-nonlimitp

    (defthm booleanp-of-reserr-nonlimitp
      (b* ((yes/no (reserr-nonlimitp x)))
        (booleanp yes/no))
      :rule-classes :rewrite)