• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • Proof-checker-array
      • Soft
      • C
        • Syntax-for-tools
        • Atc
        • Language
        • Representation
          • Representation-of-integer-operations
          • Atc-arrays
          • Representation-of-integers
          • Representation-of-integer-conversions
          • Pointed-integers
            • Def-pointed-integer-operations
            • Def-pointed-integer-operations-loop
            • Ushort-write
            • Ullong-write
              • Sshort-write
              • Sllong-write
              • Ulong-write
              • Uint-write
              • Uchar-write
              • Slong-write
              • Sint-write
              • Schar-write
              • Ushort-read
              • Ullong-read
              • Sshort-read
              • Sllong-read
              • Ulong-read
              • Uint-read
              • Uchar-read
              • Slong-read
              • Sint-read
              • Schar-read
            • Shallow-deep-embedding-relation
          • Transformation-tools
          • Insertion-sort
          • Pack
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Leftist-trees
        • Java
        • Taspi
        • Bitcoin
        • Riscv
        • Des
        • Ethereum
        • X86isa
        • Sha-2
        • Yul
        • Zcash
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Poseidon
        • Where-do-i-place-my-book
        • Axe
        • Bigmems
        • Builtins
        • Execloader
        • Aleo
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Pointed-integers

    Ullong-write

    Representation of a write of a pointed type unsigned long long.

    Signature
    (ullong-write x) → x
    Arguments
    x — Guard (ullongp x).
    Returns
    x — Type (star (ullongp x)).

    Definitions and Theorems

    Function: ullong-write

    (defun ullong-write (x)
      (declare (xargs :guard (ullongp x)))
      (let ((__function__ 'ullong-write))
        (declare (ignorable __function__))
        (ullong-fix x)))

    Theorem: return-type-of-ullong-write

    (defthm return-type-of-ullong-write
      (b* ((x (ullong-write x)))
        (star (ullongp x)))
      :rule-classes :rewrite)

    Theorem: ullongp-of-ullong-write

    (defthm ullongp-of-ullong-write
      (b* ((x (ullong-write x))) (ullongp x))
      :rule-classes :rewrite)

    Theorem: ullong-write-of-ullong-fix-x

    (defthm ullong-write-of-ullong-fix-x
      (equal (ullong-write (ullong-fix x))
             (ullong-write x)))

    Theorem: ullong-write-ullong-equiv-congruence-on-x

    (defthm ullong-write-ullong-equiv-congruence-on-x
      (implies (ullong-equiv x x-equiv)
               (equal (ullong-write x)
                      (ullong-write x-equiv)))
      :rule-classes :congruence)