• 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
          • Representation
            • Representation-of-integer-operations
            • Atc-arrays
              • Atc-def-integer-arrays
              • Ushort-array-write
              • Ushort-array-integer-write
              • Ulong-array-integer-write
              • Ullong-array-write
              • Ullong-array-integer-write
              • Uchar-array-integer-write
              • Sshort-array-write
              • Sshort-array-integer-write
              • Slong-array-integer-write
              • Sllong-array-write
              • Sllong-array-integer-write
              • Schar-array-integer-write
              • Ulong-array-write
              • Uchar-array-write
              • Slong-array-write
              • Schar-array-write
              • Uint-array-write
              • Uint-array-integer-write
              • Sint-array-write
              • Sint-array-integer-write
              • Ushort-array
              • Ullong-array
              • Sshort-array
              • Sllong-array
              • Ulong-array
              • Uint-array
                • Uint-array-fix
                • Uint-array-equiv
                • Make-uint-array
                • Uint-arrayp
                • Uint-array->elements
                • Uint-array->elemtype
                • Change-uint-array
              • Uchar-array
              • Slong-array
              • Sint-array
              • Schar-array
              • Ushort-array-integer-read
              • Ushort-array-integer-index-okp
              • Ullong-array-integer-read
              • Ullong-array-integer-index-okp
              • Sshort-array-integer-read
              • Sshort-array-integer-index-okp
              • Sllong-array-integer-read
              • Sllong-array-integer-index-okp
              • Ulong-array-integer-read
              • Ulong-array-integer-index-okp
              • Ullong-array-read
              • Uint-array-integer-read
              • Uint-array-integer-index-okp
              • Uchar-array-integer-read
              • Uchar-array-integer-index-okp
              • Slong-array-integer-read
              • Slong-array-integer-index-okp
              • Sllong-array-read
              • Sint-array-integer-read
              • Sint-array-integer-index-okp
              • Schar-array-integer-read
              • Schar-array-integer-index-okp
              • Ushort-array-read
              • Ushort-array-index-okp
              • Ulong-array-read
              • Ulong-array-index-okp
              • Ullong-array-index-okp
              • Uint-array-read
              • Uchar-array-read
              • Uchar-array-index-okp
              • Sshort-array-read
              • Sshort-array-index-okp
              • Slong-array-read
              • Slong-array-index-okp
              • Sllong-array-index-okp
              • Sint-array-read
              • Schar-array-read
              • Schar-array-index-okp
              • Uint-array-index-okp
              • Sint-array-index-okp
              • Ushort-array-of
              • Ullong-array-of
              • Uchar-array-length
              • Sshort-array-of
              • Sllong-array-of
              • Ulong-array-of
              • Uint-array-of
              • Uchar-array-of
              • Slong-array-of
              • Sint-array-of
              • Schar-array-of
              • Ushort-array-length
              • Ulong-array-length
              • Ullong-array-length
              • Sshort-array-length
              • Sllong-array-length
              • Uint-array-length
              • Slong-array-length
              • Sint-array-length
              • Schar-array-length
              • Atc-def-integer-arrays-loop
            • Representation-of-integers
            • Representation-of-integer-conversions
            • Pointed-integers
            • Shallow-deep-embedding-relation
          • 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
  • Atc-arrays

Uint-array

Fixtype of (ATC's model of) arrays of type unsigned int.

This is a product type introduced by fty::defprod.

Fields
elemtype — type
elements — uint-list
Additional Requirements

The following invariant is enforced on the fields:

(and (type-case elemtype :uint) (consp elements))

Theorem: uint-arrayp-alt-def

(defthm uint-arrayp-alt-def
  (equal (uint-arrayp x)
         (and (valuep x)
              (value-case x :array)
              (equal (value-array->elemtype x)
                     (type-uint))
              (uint-listp (value-array->elements x)))))

Theorem: uint-array->elements-alt-def

(defthm uint-array->elements-alt-def
  (implies (uint-arrayp array)
           (equal (uint-array->elements array)
                  (value-array->elements array))))

Subtopics

Uint-array-fix
Fixing function for uint-array structures.
Uint-array-equiv
Basic equivalence relation for uint-array structures.
Make-uint-array
Basic constructor macro for uint-array structures.
Uint-arrayp
Recognizer for uint-array structures.
Uint-array->elements
Get the elements field from a uint-array.
Uint-array->elemtype
Get the elemtype field from a uint-array.
Change-uint-array
Modifying constructor for uint-array structures.