• 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
          • Atc
            • Atc-implementation
            • Atc-tutorial
            • Pure-expression-execution
              • Exec-expr-pure
              • Expr-pure-limit
              • Exec-expr-pure-list
              • Expr-list-pure-limit
              • Exec-expr-list-to-exec-expr-pure-list-when-expr-pure-list-limit
              • Induct-exec-expr-of-pure
              • Exec-expr-to-exec-expr-pure-when-expr-pure-limit
              • Exec-expr-list-to-exec-expr-pure-list-when-not-errorp
              • Exec-expr-to-exec-expr-pure-when-not-errorp
              • Induct-exec-expr-list-of-pure
            • 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
    • Pure-expression-execution

    Induct-exec-expr-list-of-pure

    Induction scheme for exec-expr-list applied to a list of pure expressions.

    Signature
    (induct-exec-expr-list-of-pure exprs limit) → *
    Arguments
    exprs — Guard (expr-listp exprs).
    limit — Guard (natp limit).

    This concerns both the list structure and the limit.

    Definitions and Theorems

    Function: induct-exec-expr-list-of-pure

    (defun induct-exec-expr-list-of-pure (exprs limit)
      (declare (xargs :guard (and (expr-listp exprs) (natp limit))))
      (cond ((endp exprs) nil)
            (t (induct-exec-expr-list-of-pure (cdr exprs)
                                              (1- limit)))))