• 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
        • Soft
          • Soft-future-work
          • Soft-macros
          • Updates-to-workshop-material
          • Soft-implementation
            • Soft-implementation-core
              • Sothm-inst-facts
              • Ext-fun-subst-term/terms/function
              • Fun-subst-function
              • Sothm-inst-pairs
              • Funvars-of-term/terms
                • Funvars-of-term
                • Funvars-of-terms
              • Funvars-of-plain-fn
              • Sothm-inst-proof
              • Fun-subst-term/terms
              • Get-sof-instance
              • Sof-instancesp
              • Put-sof-instance
              • Fun-substp
              • Sofun-kindp
              • Funvar-listp
              • *-listp
              • Funvars-of-quantifier-fn
              • No-trivial-pairsp
              • Funvars-of-choice-fn
              • Funvar-instp
              • Funvars-of-thm
              • Sofunp
              • Funvarp
              • Sof-instances
              • Sothmp
              • Quant-sofunp
              • Plain-sofunp
              • Funvar-inst-listp
              • Choice-sofunp
              • Sofun-funvars
              • Sofun-kind
              • Function-variables-table
              • Sof-instances-table
              • Second-order-functions-table
            • Gen-macro2-of-macro
            • Defun-inst-implementation
            • Defthm-inst-implementation
            • Defsoft-implementation
            • Defunvar-implementation
            • Defund-sk2-implementation
            • Defun-sk2-implementation
            • Define-sk2-implementation
            • Defchoose2-implementation
            • Defund2-implementation
            • Defun2-implementation
            • Define2-implementation
          • Soft-notions
        • 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
  • Soft-implementation-core

Funvars-of-term/terms

Function variables that terms depend on.

A term may depend on a function variable directly (when the function variable occurs in the term) or indirectly (when a the second-order function that occurs in the term depends on the function variable).

Note that, in the following code, if (sofunp fn wrld) is nil, then fn is a first-order function, which depends on no function variables.

The returned list may contain duplicates.

Function: funvars-of-term

(defun funvars-of-term (term wrld)
  (declare (xargs :guard (and (pseudo-termp term)
                              (plist-worldp wrld))))
  (let ((__function__ 'funvars-of-term))
    (declare (ignorable __function__))
    (if (or (variablep term) (quotep term))
        nil
      (let* ((fn (fn-symb term))
             (fn-vars (if (flambdap fn)
                          (funvars-of-term (lambda-body fn) wrld)
                        (if (funvarp fn wrld)
                            (list fn)
                          (if (sofunp fn wrld)
                              (sofun-funvars fn wrld)
                            nil)))))
        (append fn-vars
                (funvars-of-terms (fargs term)
                                  wrld))))))

Function: funvars-of-terms

(defun funvars-of-terms (terms wrld)
  (declare (xargs :guard (and (pseudo-term-listp terms)
                              (plist-worldp wrld))))
  (let ((__function__ 'funvars-of-terms))
    (declare (ignorable __function__))
    (if (endp terms)
        nil
      (append (funvars-of-term (car terms) wrld)
              (funvars-of-terms (cdr terms) wrld)))))

Definitions and Theorems

Function: funvars-of-term

(defun funvars-of-term (term wrld)
  (declare (xargs :guard (and (pseudo-termp term)
                              (plist-worldp wrld))))
  (let ((__function__ 'funvars-of-term))
    (declare (ignorable __function__))
    (if (or (variablep term) (quotep term))
        nil
      (let* ((fn (fn-symb term))
             (fn-vars (if (flambdap fn)
                          (funvars-of-term (lambda-body fn) wrld)
                        (if (funvarp fn wrld)
                            (list fn)
                          (if (sofunp fn wrld)
                              (sofun-funvars fn wrld)
                            nil)))))
        (append fn-vars
                (funvars-of-terms (fargs term)
                                  wrld))))))

Function: funvars-of-terms

(defun funvars-of-terms (terms wrld)
  (declare (xargs :guard (and (pseudo-term-listp terms)
                              (plist-worldp wrld))))
  (let ((__function__ 'funvars-of-terms))
    (declare (ignorable __function__))
    (if (endp terms)
        nil
      (append (funvars-of-term (car terms) wrld)
              (funvars-of-terms (cdr terms) wrld)))))

Subtopics

Funvars-of-term
Funvars-of-terms