• 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
            • Abstract-syntax
            • Integer-ranges
            • Implementation-environments
            • Dynamic-semantics
            • Static-semantics
            • Grammar
            • Integer-formats
            • Types
            • Portable-ascii-identifiers
            • Values
            • Integer-operations
            • Computation-states
            • Object-designators
            • Operations
            • Errors
              • Error
              • Defresult
              • Boolean-result
                • Boolean-result-fix
                  • Boolean-result-equiv
                  • Boolean-result-ok
                  • Boolean-result-err
                  • Boolean-resultp
                  • Boolean-result-kind
                • Defresult-fn
              • Tag-environments
              • Function-environments
              • Character-sets
              • Flexible-array-member-removal
              • Arithmetic-operations
              • Pointer-operations
              • Bytes
              • Keywords
              • Real-operations
              • Array-operations
              • Scalar-operations
              • Structure-operations
            • Representation
            • 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
    • Boolean-result

    Boolean-result-fix

    Fixing function for boolean-result structures.

    Signature
    (boolean-result-fix acl2::x) → new-x
    Arguments
    acl2::x — Guard (boolean-resultp acl2::x).
    Returns
    new-x — Type (boolean-resultp new-x).

    Definitions and Theorems

    Function: boolean-result-fix$inline

    (defun boolean-result-fix$inline (acl2::x)
      (declare (xargs :guard (boolean-resultp acl2::x)))
      (let ((__function__ 'boolean-result-fix))
        (declare (ignorable __function__))
        (mbe :logic
             (case (boolean-result-kind acl2::x)
               (:ok (b* ((get (acl2::bool-fix acl2::x)))
                      get))
               (:err (b* ((get (error-fix acl2::x))) get)))
             :exec acl2::x)))

    Theorem: boolean-resultp-of-boolean-result-fix

    (defthm boolean-resultp-of-boolean-result-fix
      (b* ((new-x (boolean-result-fix$inline acl2::x)))
        (boolean-resultp new-x))
      :rule-classes :rewrite)

    Theorem: boolean-result-fix-when-boolean-resultp

    (defthm boolean-result-fix-when-boolean-resultp
      (implies (boolean-resultp acl2::x)
               (equal (boolean-result-fix acl2::x)
                      acl2::x)))

    Function: boolean-result-equiv$inline

    (defun boolean-result-equiv$inline (acl2::x acl2::y)
      (declare (xargs :guard (and (boolean-resultp acl2::x)
                                  (boolean-resultp acl2::y))))
      (equal (boolean-result-fix acl2::x)
             (boolean-result-fix acl2::y)))

    Theorem: boolean-result-equiv-is-an-equivalence

    (defthm boolean-result-equiv-is-an-equivalence
      (and (booleanp (boolean-result-equiv x y))
           (boolean-result-equiv x x)
           (implies (boolean-result-equiv x y)
                    (boolean-result-equiv y x))
           (implies (and (boolean-result-equiv x y)
                         (boolean-result-equiv y z))
                    (boolean-result-equiv x z)))
      :rule-classes (:equivalence))

    Theorem: boolean-result-equiv-implies-equal-boolean-result-fix-1

    (defthm boolean-result-equiv-implies-equal-boolean-result-fix-1
      (implies (boolean-result-equiv acl2::x x-equiv)
               (equal (boolean-result-fix acl2::x)
                      (boolean-result-fix x-equiv)))
      :rule-classes (:congruence))

    Theorem: boolean-result-fix-under-boolean-result-equiv

    (defthm boolean-result-fix-under-boolean-result-equiv
      (boolean-result-equiv (boolean-result-fix acl2::x)
                            acl2::x)
      :rule-classes (:rewrite :rewrite-quoted-constant))

    Theorem: equal-of-boolean-result-fix-1-forward-to-boolean-result-equiv

    (defthm
          equal-of-boolean-result-fix-1-forward-to-boolean-result-equiv
      (implies (equal (boolean-result-fix acl2::x)
                      acl2::y)
               (boolean-result-equiv acl2::x acl2::y))
      :rule-classes :forward-chaining)

    Theorem: equal-of-boolean-result-fix-2-forward-to-boolean-result-equiv

    (defthm
          equal-of-boolean-result-fix-2-forward-to-boolean-result-equiv
      (implies (equal acl2::x (boolean-result-fix acl2::y))
               (boolean-result-equiv acl2::x acl2::y))
      :rule-classes :forward-chaining)

    Theorem: boolean-result-equiv-of-boolean-result-fix-1-forward

    (defthm boolean-result-equiv-of-boolean-result-fix-1-forward
      (implies (boolean-result-equiv (boolean-result-fix acl2::x)
                                     acl2::y)
               (boolean-result-equiv acl2::x acl2::y))
      :rule-classes :forward-chaining)

    Theorem: boolean-result-equiv-of-boolean-result-fix-2-forward

    (defthm boolean-result-equiv-of-boolean-result-fix-2-forward
      (implies
           (boolean-result-equiv acl2::x (boolean-result-fix acl2::y))
           (boolean-result-equiv acl2::x acl2::y))
      :rule-classes :forward-chaining)

    Theorem: boolean-result-kind$inline-of-boolean-result-fix-x

    (defthm boolean-result-kind$inline-of-boolean-result-fix-x
      (equal (boolean-result-kind$inline (boolean-result-fix acl2::x))
             (boolean-result-kind$inline acl2::x)))

    Theorem: boolean-result-kind$inline-boolean-result-equiv-congruence-on-x

    (defthm
        boolean-result-kind$inline-boolean-result-equiv-congruence-on-x
      (implies (boolean-result-equiv acl2::x x-equiv)
               (equal (boolean-result-kind$inline acl2::x)
                      (boolean-result-kind$inline x-equiv)))
      :rule-classes :congruence)