• 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
              • Check-stmt
              • Check-cond
              • Check-binary-pure
              • Var-table-add-var
              • Check-unary
              • Check-obj-declon
              • Fun-table-add-fun
              • Check-fundef
              • Fun-sinfo
                • Fun-sinfo-fix
                  • Fun-sinfo-equiv
                  • Make-fun-sinfo
                  • Fun-sinfo->output
                  • Fun-sinfo->inputs
                  • Fun-sinfo->definedp
                  • Change-fun-sinfo
                  • Fun-sinfop
                • Check-expr-asg
                • Check-expr-call
                • Check-arrsub
                • Uaconvert-types
                • Apconvert-type-list
                • Check-initer
                • Adjust-type-list
                • Types+vartab
                • Promote-type
                • Check-tag-declon
                • Check-expr-call-or-asg
                • Check-ext-declon
                • Check-param-declon
                • Check-member
                • Check-expr-pure
                • Init-type-matchp
                • Check-obj-adeclor
                • Check-memberp
                • Check-expr-call-or-pure
                • Check-cast
                • Check-struct-declon-list
                • Check-fun-declor
                • Expr-type
                • Check-ext-declon-list
                • Check-transunit
                • Check-fun-declon
                • Var-defstatus
                • Struct-member-lookup
                • Preprocess
                • Wellformed
                • Check-tyspecseq
                • Check-param-declon-list
                • Check-iconst
                • Check-expr-pure-list
                • Var-sinfo-option
                • Fun-sinfo-option
                • Var-scope-all-definedp
                • Funtab+vartab+tagenv
                • Var-sinfo
                • Var-table-lookup
                • Apconvert-type
                • Var-table
                • Check-tyname
                • Types+vartab-result
                • Funtab+vartab+tagenv-result
                • Fun-table-lookup
                • Wellformed-result
                • Var-table-add-block
                • Var-table-scope
                • Var-table-result
                • Fun-table-result
                • Expr-type-result
                • Adjust-type
                • Check-fileset
                • Var-table-all-definedp
                • Check-const
                • Fun-table-all-definedp
                • Check-ident
                • Fun-table
                • Var-table-init
                • Fun-table-init
              • Grammar
              • Integer-formats
              • Types
              • Portable-ascii-identifiers
              • Values
              • Integer-operations
              • Computation-states
              • Object-designators
              • Operations
              • Errors
              • 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
    • Fun-sinfo

    Fun-sinfo-fix

    Fixing function for fun-sinfo structures.

    Signature
    (fun-sinfo-fix x) → new-x
    Arguments
    x — Guard (fun-sinfop x).
    Returns
    new-x — Type (fun-sinfop new-x).

    Definitions and Theorems

    Function: fun-sinfo-fix$inline

    (defun fun-sinfo-fix$inline (x)
      (declare (xargs :guard (fun-sinfop x)))
      (let ((__function__ 'fun-sinfo-fix))
        (declare (ignorable __function__))
        (mbe :logic
             (b* ((inputs (type-list-fix (cdr (std::da-nth 0 x))))
                  (output (type-fix (cdr (std::da-nth 1 x))))
                  (definedp (acl2::bool-fix (cdr (std::da-nth 2 x)))))
               (list (cons 'inputs inputs)
                     (cons 'output output)
                     (cons 'definedp definedp)))
             :exec x)))

    Theorem: fun-sinfop-of-fun-sinfo-fix

    (defthm fun-sinfop-of-fun-sinfo-fix
      (b* ((new-x (fun-sinfo-fix$inline x)))
        (fun-sinfop new-x))
      :rule-classes :rewrite)

    Theorem: fun-sinfo-fix-when-fun-sinfop

    (defthm fun-sinfo-fix-when-fun-sinfop
      (implies (fun-sinfop x)
               (equal (fun-sinfo-fix x) x)))

    Function: fun-sinfo-equiv$inline

    (defun fun-sinfo-equiv$inline (acl2::x acl2::y)
      (declare (xargs :guard (and (fun-sinfop acl2::x)
                                  (fun-sinfop acl2::y))))
      (equal (fun-sinfo-fix acl2::x)
             (fun-sinfo-fix acl2::y)))

    Theorem: fun-sinfo-equiv-is-an-equivalence

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

    Theorem: fun-sinfo-equiv-implies-equal-fun-sinfo-fix-1

    (defthm fun-sinfo-equiv-implies-equal-fun-sinfo-fix-1
      (implies (fun-sinfo-equiv acl2::x x-equiv)
               (equal (fun-sinfo-fix acl2::x)
                      (fun-sinfo-fix x-equiv)))
      :rule-classes (:congruence))

    Theorem: fun-sinfo-fix-under-fun-sinfo-equiv

    (defthm fun-sinfo-fix-under-fun-sinfo-equiv
      (fun-sinfo-equiv (fun-sinfo-fix acl2::x)
                       acl2::x)
      :rule-classes (:rewrite :rewrite-quoted-constant))

    Theorem: equal-of-fun-sinfo-fix-1-forward-to-fun-sinfo-equiv

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

    Theorem: equal-of-fun-sinfo-fix-2-forward-to-fun-sinfo-equiv

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

    Theorem: fun-sinfo-equiv-of-fun-sinfo-fix-1-forward

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

    Theorem: fun-sinfo-equiv-of-fun-sinfo-fix-2-forward

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