• 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
          • Atc
            • Atc-implementation
              • Atc-abstract-syntax
              • Atc-pretty-printer
              • Atc-event-and-code-generation
              • Fty-pseudo-term-utilities
              • Atc-term-recognizers
              • Atc-input-processing
              • Atc-shallow-embedding
              • Atc-process-inputs-and-gen-everything
              • Atc-table
              • Atc-fn
              • Atc-pretty-printing-options
              • Atc-types
                • Type-to-tyname
                • Ident+type-to-tyspec+declor
                • Positive-to-iconst
                • Type-to-maker
                • Irr-type
                • Atc-macro-definition
              • Atc-tutorial
              • Pure-expression-execution
            • 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
    • Atc-types

    Irr-type

    An irrelevant type.

    Signature
    (irr-type) → acl2::irr
    Returns
    acl2::irr — Type (typep acl2::irr).

    This can be used as a dummy value of the type.

    Definitions and Theorems

    Function: irr-type

    (defun irr-type nil
      (declare (xargs :guard t))
      (let ((__function__ 'irr-type))
        (declare (ignorable __function__))
        (type-void)))

    Theorem: typep-of-irr-type

    (defthm typep-of-irr-type
      (b* ((acl2::irr (irr-type)))
        (typep acl2::irr))
      :rule-classes :rewrite)