• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • 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
            • Disambiguator
            • Abstract-syntax
              • Expr
              • Exprs/decls/stmts
              • Type-spec
              • Binop
              • Stmt
              • Amb-expr/tyname
              • Dirdeclor
              • Unop
              • Asm-stmt
              • Dec/oct/hex-const
              • Simple-escape
              • Attrib
              • Ident
              • Amb-decl/stmt
              • Dirabsdeclor
              • Decl-spec
              • Structdecl
              • Fundef
              • Transunit-ensemble
              • Asm-name-spec
              • Amb-declor/absdeclor
              • Param-declor
              • Declor
              • Type-qual
              • Absdeclor
              • Strunispec
              • Stor-spec
              • Keyword-uscores
              • Align-spec
              • Label
              • Expr-option
              • Spec/qual
              • Lsuffix
              • Hex-frac-const
              • Desiniter
              • Tyname
              • Iconst
              • Dirabsdeclor-option
              • Dec-frac-const
              • Dec-core-fconst
              • Extdecl
              • Amb?-declor/absdeclor
              • Isuffix
              • Initdeclor
              • Hex-core-fconst
              • Const-expr-option
              • Attrib-spec
              • Structdeclor
              • Escape
              • Decl
              • Amb?-expr/tyname
              • Ident-option
              • Bin-expo
              • Absdeclor-option
              • Statassert
              • Param-declon
              • Member-designor
              • Initer-option
              • Initer
              • Fsuffix
              • Enumspec
              • Declor-option
              • Const
              • Hex-quad
              • Eprefix
              • Const-expr
              • Block-item
              • Oct-escape
              • Inc/dec-op
              • Fun-spec
              • Dec-expo
              • Cprefix-option
              • Asm-name-spec-option
              • Amb?-decl/stmt
              • S-char
              • Isuffix-option
              • Genassoc
              • Fundef-option
              • Fsuffix-option
              • Fconst
              • Eprefix-option
              • Dec-expo-option
              • Cprefix
              • C-char
              • Type-spec-option
              • Sign-option
              • Iconst-option
              • Asm-output
              • Asm-input
              • Const-option
              • Usuffix
              • Univ-char-name
              • Transunit
              • Hprefix
              • Enumer
              • Designor
              • Attrib-name
              • Sign
              • Asm-qual
              • Typequal/attribspec
              • Dec-expo-prefix
              • Bin-expo-prefix
              • Stringlit
              • Cconst
              • Expr/tyname
              • Decl/stmt
              • Declor/absdeclor
              • Asm-clobber
              • Typequal/attribspec-list
              • Decl-spec-list
              • Stringlit-list
              • Spec/qual-list
              • Inc/dec-op-list
              • Desiniter-list
              • S-char-list
              • Param-declon-list
              • Decl-list
              • C-char-list
              • Block-item-list
              • Typequal/attribspec-list-list
              • Structdeclor-list
              • Structdecl-list
              • Initdeclor-list
              • Genassoc-list
              • Filepath-transunit-map
                • Filepath-transunit-mapp
                  • Filepath-transunit-map-fix
                  • Filepath-transunit-map-equiv
                • Extdecl-list
                • Expr-list
                • Enumer-list
                • Attrib-spec-list
                • Type-spec-list
                • Ident-list
                • Asm-qual-list
                • Asm-output-list
                • Asm-input-list
                • Asm-clobber-list
                • Stor-spec-list
                • Ident-set
                • Ident-option-set
                • Eprefix-option-list
                • Designor-list
                • Attrib-list
              • Parser
              • Validator
              • Printer
              • Formalized-subset
              • Mapping-to-language-definition
              • Input-files
              • Defpred
              • Output-files
              • Abstract-syntax-operations
              • Validation-information
              • Implementation-environments
              • Concrete-syntax
              • Ascii-identifiers
              • Unambiguity
              • Preprocessing
              • Abstraction-mapping
            • Atc
            • Language
            • 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
    • Filepath-transunit-map

    Filepath-transunit-mapp

    Recognizer for filepath-transunit-map.

    Signature
    (filepath-transunit-mapp x) → *

    Definitions and Theorems

    Function: filepath-transunit-mapp

    (defun filepath-transunit-mapp (x)
      (declare (xargs :guard t))
      (if (atom x)
          (null x)
        (and (consp (car x))
             (filepathp (caar x))
             (transunitp (cdar x))
             (or (null (cdr x))
                 (and (consp (cdr x))
                      (consp (cadr x))
                      (acl2::fast-<< (caar x) (caadr x))
                      (filepath-transunit-mapp (cdr x)))))))

    Theorem: booleanp-of-filepath-transunit-mapp

    (defthm booleanp-of-filepath-transunit-mapp
      (booleanp (filepath-transunit-mapp x)))

    Theorem: mapp-when-filepath-transunit-mapp

    (defthm mapp-when-filepath-transunit-mapp
      (implies (filepath-transunit-mapp x)
               (omap::mapp x))
      :rule-classes (:rewrite :forward-chaining))

    Theorem: filepath-transunit-mapp-of-tail

    (defthm filepath-transunit-mapp-of-tail
      (implies (filepath-transunit-mapp x)
               (filepath-transunit-mapp (omap::tail x))))

    Theorem: filepathp-of-head-key-when-filepath-transunit-mapp

    (defthm filepathp-of-head-key-when-filepath-transunit-mapp
      (implies (and (filepath-transunit-mapp x)
                    (not (omap::emptyp x)))
               (filepathp (mv-nth 0 (omap::head x)))))

    Theorem: transunitp-of-head-val-when-filepath-transunit-mapp

    (defthm transunitp-of-head-val-when-filepath-transunit-mapp
      (implies (and (filepath-transunit-mapp x)
                    (not (omap::emptyp x)))
               (transunitp (mv-nth 1 (omap::head x)))))

    Theorem: filepath-transunit-mapp-of-update

    (defthm filepath-transunit-mapp-of-update
      (implies (and (filepath-transunit-mapp x)
                    (filepathp k)
                    (transunitp v))
               (filepath-transunit-mapp (omap::update k v x))))

    Theorem: filepath-transunit-mapp-of-update*

    (defthm filepath-transunit-mapp-of-update*
      (implies (and (filepath-transunit-mapp x)
                    (filepath-transunit-mapp y))
               (filepath-transunit-mapp (omap::update* x y))))

    Theorem: filepath-transunit-mapp-of-delete

    (defthm filepath-transunit-mapp-of-delete
      (implies (filepath-transunit-mapp x)
               (filepath-transunit-mapp (omap::delete k x))))

    Theorem: filepath-transunit-mapp-of-delete*

    (defthm filepath-transunit-mapp-of-delete*
      (implies (filepath-transunit-mapp x)
               (filepath-transunit-mapp (omap::delete* k x))))

    Theorem: filepathp-when-assoc-filepath-transunit-mapp-binds-free-x

    (defthm filepathp-when-assoc-filepath-transunit-mapp-binds-free-x
      (implies (and (omap::assoc k x)
                    (filepath-transunit-mapp x))
               (filepathp k)))

    Theorem: filepathp-of-car-of-assoc-filepath-transunit-mapp

    (defthm filepathp-of-car-of-assoc-filepath-transunit-mapp
      (implies (and (filepath-transunit-mapp x)
                    (omap::assoc k x))
               (filepathp (car (omap::assoc k x)))))

    Theorem: transunitp-of-cdr-of-assoc-filepath-transunit-mapp

    (defthm transunitp-of-cdr-of-assoc-filepath-transunit-mapp
      (implies (and (filepath-transunit-mapp x)
                    (omap::assoc k x))
               (transunitp (cdr (omap::assoc k x)))))

    Theorem: transunitp-of-lookup-when-filepath-transunit-mapp

    (defthm transunitp-of-lookup-when-filepath-transunit-mapp
      (implies (and (filepath-transunit-mapp x)
                    (omap::assoc k x))
               (transunitp (omap::lookup k x))))