• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
        • Proof-support
        • Semantics
        • Lifting
          • Lift-thm
          • Lift-thm-constr-satp-specialized-lemma
          • Lift-var-name-list
          • Lift-thm-constr-to-def-satp-specialized-lemmas
          • Lift-thm-definition-satp-specialized-lemma
          • Lift-info
          • Lift-var-name
          • Lift-thm-def-hyps
          • Lift-definition
          • Lift-expression
          • Lift-thm-asgfree-pairs
          • Lift
          • Lift-thm-free-inst
          • Lift-fn
          • Lift-thm-type-prescriptions-for-called-preds
          • Lift-rel-name
          • Lift-constraint
          • Lift-thm-omap-keys-lemma-instances
          • Lift-table-add
          • Lift-rules
          • Lift-thm-called-lift-thms
          • Lift-rel-name-set-to-list
          • Lift-gen-fep-terms
          • Lift-expression-list
          • Lift-constraint-list
          • Lift-var-name-set-to-list
            • Lift-thm-asgfree-pairs-aux
            • Current-package+
            • Lift-table
          • R1cs-subset
          • Well-formedness
          • Abstract-syntax
          • Concrete-syntax
          • R1cs-bridge
          • Parser-interface
        • Legacy-defrstobj
        • C
        • Proof-checker-array
        • Soft
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Ethereum
        • Leftist-trees
        • Java
        • Riscv
        • Taspi
        • Bitcoin
        • Zcash
        • Des
        • X86isa
        • Sha-2
        • Yul
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Axe
        • Poseidon
        • Where-do-i-place-my-book
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Community
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Lifting

    Lift-var-name-set-to-list

    Lift a set of PFCS variable names to a list of ACL2 symbols.

    Signature
    (lift-var-name-set-to-list names state) → syms
    Arguments
    names — Guard (name-setp names).
    Returns
    syms — Type (symbol-listp syms).

    The order of the list is according to the total order that osets are based on.

    Definitions and Theorems

    Function: lift-var-name-set-to-list

    (defun lift-var-name-set-to-list (names state)
      (declare (xargs :stobjs (state)))
      (declare (xargs :guard (name-setp names)))
      (let ((__function__ 'lift-var-name-set-to-list))
        (declare (ignorable __function__))
        (cond ((emptyp names) nil)
              (t (cons (lift-var-name (head names) state)
                       (lift-var-name-set-to-list (tail names)
                                                  state))))))

    Theorem: symbol-listp-of-lift-var-name-set-to-list

    (defthm symbol-listp-of-lift-var-name-set-to-list
      (b* ((syms (lift-var-name-set-to-list names state)))
        (symbol-listp syms))
      :rule-classes :rewrite)