• 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
              • 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
                • Fun-tablep
                  • Fun-table-fix
                  • Fun-table-equiv
                • 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-table

    Fun-tablep

    Recognizer for fun-table.

    Signature
    (fun-tablep x) → *

    Definitions and Theorems

    Function: fun-tablep

    (defun fun-tablep (x)
      (declare (xargs :guard t))
      (if (atom x)
          (null x)
        (and (consp (car x))
             (identp (caar x))
             (fun-sinfop (cdar x))
             (or (null (cdr x))
                 (and (consp (cdr x))
                      (consp (cadr x))
                      (acl2::fast-<< (caar x) (caadr x))
                      (fun-tablep (cdr x)))))))

    Theorem: booleanp-of-fun-tablep

    (defthm booleanp-of-fun-tablep
      (booleanp (fun-tablep x)))

    Theorem: mapp-when-fun-tablep

    (defthm mapp-when-fun-tablep
      (implies (fun-tablep x) (omap::mapp x))
      :rule-classes (:rewrite :forward-chaining))

    Theorem: fun-tablep-of-tail

    (defthm fun-tablep-of-tail
      (implies (fun-tablep x)
               (fun-tablep (omap::tail x))))

    Theorem: identp-of-head-key-when-fun-tablep

    (defthm identp-of-head-key-when-fun-tablep
      (implies (and (fun-tablep x)
                    (not (omap::emptyp x)))
               (identp (mv-nth 0 (omap::head x)))))

    Theorem: fun-sinfop-of-head-val-when-fun-tablep

    (defthm fun-sinfop-of-head-val-when-fun-tablep
      (implies (and (fun-tablep x)
                    (not (omap::emptyp x)))
               (fun-sinfop (mv-nth 1 (omap::head x)))))

    Theorem: fun-tablep-of-update

    (defthm fun-tablep-of-update
      (implies (and (fun-tablep x)
                    (identp k)
                    (fun-sinfop v))
               (fun-tablep (omap::update k v x))))

    Theorem: fun-tablep-of-update*

    (defthm fun-tablep-of-update*
      (implies (and (fun-tablep x) (fun-tablep y))
               (fun-tablep (omap::update* x y))))

    Theorem: fun-tablep-of-delete

    (defthm fun-tablep-of-delete
      (implies (fun-tablep x)
               (fun-tablep (omap::delete k x))))

    Theorem: fun-tablep-of-delete*

    (defthm fun-tablep-of-delete*
      (implies (fun-tablep x)
               (fun-tablep (omap::delete* k x))))

    Theorem: identp-when-assoc-fun-tablep-binds-free-x

    (defthm identp-when-assoc-fun-tablep-binds-free-x
      (implies (and (omap::assoc k x) (fun-tablep x))
               (identp k)))

    Theorem: identp-of-car-of-assoc-fun-tablep

    (defthm identp-of-car-of-assoc-fun-tablep
      (implies (and (fun-tablep x) (omap::assoc k x))
               (identp (car (omap::assoc k x)))))

    Theorem: fun-sinfop-of-cdr-of-assoc-fun-tablep

    (defthm fun-sinfop-of-cdr-of-assoc-fun-tablep
      (implies (and (fun-tablep x) (omap::assoc k x))
               (fun-sinfop (cdr (omap::assoc k x)))))

    Theorem: fun-sinfop-of-lookup-when-fun-tablep

    (defthm fun-sinfop-of-lookup-when-fun-tablep
      (implies (and (fun-tablep x) (omap::assoc k x))
               (fun-sinfop (omap::lookup k x))))