• 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
            • Formalized-subset
            • Mapping-to-language-definition
            • Input-files
            • Compilation-database
            • Printer
            • Output-files
            • Abstract-syntax-operations
            • Implementation-environments
            • Abstract-syntax
            • Concrete-syntax
            • Disambiguation
            • Validation
              • Validator
              • Validation-information
                • Abstract-syntax-annop
                • Types
                  • Type-compatiblep
                  • Type-uaconvert-signed-unsigned
                  • Type-uaconvert
                  • Type-integer-promote
                  • Type-params-compatiblep
                  • Type-option
                    • Type-option-fix
                      • Type-option-case
                      • Type-option-equiv
                      • Type-optionp
                      • Type-option-some
                      • Type-option-none
                    • Type-formalp
                    • Ldm-type
                    • Make-pointers-to
                    • Type-list-default-arg-promote
                    • Type-uaconvert-unsigned
                    • Type-uaconvert-signed
                    • Type-default-arg-promote
                    • Type-default-arg-promotedp
                    • Type-params-composite
                    • Type-integer-promotedp
                    • Ldm-type-option-set
                    • Type-unsigned-integerp
                    • Type-standard-unsigned-integerp
                    • Type-signed-integerp
                    • Type-to-value-kind
                    • Type-standard-signed-integerp
                    • Ildm-type
                    • Type-arithmeticp
                    • Ldm-type-set
                    • Ldm-type-option
                    • Type-standard-integerp
                    • Type-option-set-formalp
                    • Type-real-floatingp
                    • Type-option-formalp
                    • Type-integerp
                    • Type-characterp
                    • Type-basicp
                    • Type-aggregatep
                    • Type-scalarp
                    • Type-realp
                    • Type-fpconvert
                    • Type-floatingp
                    • Type-complexp
                    • Type-set-formalp
                    • Type-apconvert
                    • Type-composite
                    • Ident-type-map
                    • Type-set
                    • Type-option-type-alist
                    • Type-option-set
                    • Type-list-compatiblep
                    • Irr-type-params
                    • Irr-type
                    • Type-list-composite
                    • Type/type-params/type-list
                  • Abstract-syntax-anno-additional-theroems
                  • Valid-ext-info
                  • Valid-table
                  • Valid-ord-info
                  • Uid
                  • Stmts-types
                  • Lifetime
                  • Init-declor-info
                  • Fundef-types
                  • Expr-type
                  • Valid-defstatus
                  • Var-info
                  • Valid-ord-info-option
                  • Valid-ext-info-option
                  • Uid-option
                  • Linkage-option
                  • Linkage
                  • Lifetime-option
                  • Valid-table-option
                  • Iconst-info
                  • Param-declor-nonabstract-info
                  • Fundef-info
                  • Expr-null-pointer-constp
                  • Valid-scope
                  • Const-expr-null-pointer-constp
                  • Expr-string-info
                  • Expr-funcall-info
                  • Expr-arrsub-info
                  • Tyname-info
                  • Transunit-info
                  • Expr-unary-info
                  • Expr-const-info
                  • Expr-binary-info
                  • Stmt-types
                  • Block-item-list-types
                  • Initer-type
                  • Valid-ord-scope
                  • Uid-increment
                  • Uid-equal
                  • Coerce-var-info
                  • Valid-externals
                  • Irr-var-info
                  • Valid-scope-list
                  • Irr-valid-table
                  • Irr-lifetime
                  • Irr-uid
                  • Irr-linkage
                  • Block-item-types
                  • Comp-stmt-types
              • Gcc-builtins
              • Preprocessing
              • Parsing
            • Atc
            • 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
    • Type-option

    Type-option-fix

    Fixing function for type-option structures.

    Signature
    (type-option-fix x) → new-x
    Arguments
    x — Guard (type-optionp x).
    Returns
    new-x — Type (type-optionp new-x).

    Definitions and Theorems

    Function: type-option-fix$inline

    (defun type-option-fix$inline (x)
      (declare (xargs :guard (type-optionp x)))
      (mbe :logic (cond ((not x) nil)
                        (t (b* ((fty::val (type-fix x)))
                             fty::val)))
           :exec x))

    Theorem: type-optionp-of-type-option-fix

    (defthm type-optionp-of-type-option-fix
      (b* ((new-x (type-option-fix$inline x)))
        (type-optionp new-x))
      :rule-classes :rewrite)

    Theorem: type-option-fix-when-type-optionp

    (defthm type-option-fix-when-type-optionp
      (implies (type-optionp x)
               (equal (type-option-fix x) x)))

    Function: type-option-equiv$inline

    (defun type-option-equiv$inline (acl2::x acl2::y)
      (declare (xargs :guard (and (type-optionp acl2::x)
                                  (type-optionp acl2::y))))
      (equal (type-option-fix acl2::x)
             (type-option-fix acl2::y)))

    Theorem: type-option-equiv-is-an-equivalence

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

    Theorem: type-option-equiv-implies-equal-type-option-fix-1

    (defthm type-option-equiv-implies-equal-type-option-fix-1
      (implies (type-option-equiv acl2::x x-equiv)
               (equal (type-option-fix acl2::x)
                      (type-option-fix x-equiv)))
      :rule-classes (:congruence))

    Theorem: type-option-fix-under-type-option-equiv

    (defthm type-option-fix-under-type-option-equiv
      (type-option-equiv (type-option-fix acl2::x)
                         acl2::x)
      :rule-classes (:rewrite :rewrite-quoted-constant))

    Theorem: equal-of-type-option-fix-1-forward-to-type-option-equiv

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

    Theorem: equal-of-type-option-fix-2-forward-to-type-option-equiv

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

    Theorem: type-option-equiv-of-type-option-fix-1-forward

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

    Theorem: type-option-equiv-of-type-option-fix-2-forward

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

    Theorem: type-option-fix$inline-of-type-option-fix-x

    (defthm type-option-fix$inline-of-type-option-fix-x
      (equal (type-option-fix$inline (type-option-fix x))
             (type-option-fix$inline x)))

    Theorem: type-option-fix$inline-type-option-equiv-congruence-on-x

    (defthm type-option-fix$inline-type-option-equiv-congruence-on-x
      (implies (type-option-equiv x x-equiv)
               (equal (type-option-fix$inline x)
                      (type-option-fix$inline x-equiv)))
      :rule-classes :congruence)