• 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
        • Proof-checker-array
        • Soft
        • C
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Leftist-trees
        • Java
        • Riscv
        • Taspi
        • Bitcoin
        • Des
        • Ethereum
        • X86isa
        • Sha-2
        • Yul
        • Zcash
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Poseidon
        • Where-do-i-place-my-book
        • Axe
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Community
      • Proof-automation
      • ACL2
      • Macro-libraries
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Lifting

    Lift-thm-called-lift-thms

    List of lifting theorems for a set of relations.

    Signature
    (lift-thm-called-lift-thms rels wrld) → called-lift-thms
    Arguments
    rels — Guard (name-setp rels).
    wrld — Guard (plist-worldp wrld).
    Returns
    called-lift-thms — Type (symbol-listp called-lift-thms).

    These are used as rewrite rules in the caller's lifting theorem.

    Definitions and Theorems

    Function: lift-thm-called-lift-thms

    (defun lift-thm-called-lift-thms (rels wrld)
      (declare (xargs :guard (and (name-setp rels)
                                  (plist-worldp wrld))))
      (let ((__function__ 'lift-thm-called-lift-thms))
        (declare (ignorable __function__))
        (b* (((when (emptyp rels)) nil)
             (rel (head rels))
             (rel-pred (lift-rel-name rel wrld)))
          (cons (acl2::packn-pos (list 'definition-satp-to- rel-pred)
                                 rel-pred)
                (lift-thm-called-lift-thms (tail rels)
                                           wrld)))))

    Theorem: symbol-listp-of-lift-thm-called-lift-thms

    (defthm symbol-listp-of-lift-thm-called-lift-thms
      (b* ((called-lift-thms (lift-thm-called-lift-thms rels wrld)))
        (symbol-listp called-lift-thms))
      :rule-classes :rewrite)