• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
        • Proof-support
        • Abstract-syntax
        • R1cs-subset
        • Semantics
          • Semantics-deeply-embedded
          • Lifting
            • Lift-thm
            • Lift-thm-constr-satp-specialized-lemma
            • Lift-thm-definition-satp-specialized-lemma
            • Lift-thm-constr-to-def-satp-specialized-lemmas
            • Lift-info
              • Lift-info-fix
              • Lift-info-equiv
              • Make-lift-info
                • Change-lift-info
                • Lift-info->hyps
                • Lift-info->def
                • Lift-infop
              • Lift-thm-def-hyps
              • Lift-thm-asgfree-pairs
              • Lift-thm-free-inst
              • Lift-thm-type-prescriptions-for-called-preds
              • Lift-fn
              • Lift-thm-omap-keys-lemma-instances
              • Lift-rules
              • Lift-table-add
              • Lift
              • Lift-thm-asgfree-pairs-aux
              • Lift-thm-called-lift-thms
              • Lift-table
            • Semantics-shallowly-embedded
          • Abstract-syntax-operations
          • Indexed-names
          • Well-formedness
          • 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
        • Taspi
        • Bitcoin
        • Riscv
        • 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
        • Bigmems
        • Builtins
        • Execloader
        • Aleo
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Lift-info

    Make-lift-info

    Basic constructor macro for lift-info structures.

    Syntax
    (make-lift-info [:def <def>] 
                    [:hyps <hyps>]) 
    

    This is the usual way to construct lift-info structures. It simply conses together a structure with the specified fields.

    This macro generates a new lift-info structure from scratch. See also change-lift-info, which can "change" an existing structure, instead.

    Definition

    This is an ordinary make- macro introduced by fty::defprod.

    Macro: make-lift-info

    (defmacro make-lift-info (&rest args)
      (std::make-aggregate 'lift-info
                           args '((:def) (:hyps))
                           'make-lift-info
                           nil))

    Function: lift-info

    (defun lift-info (def hyps)
      (declare (xargs :guard (and (definitionp def)
                                  (true-listp hyps))))
      (declare (xargs :guard t))
      (let ((__function__ 'lift-info))
        (declare (ignorable __function__))
        (b* ((def (mbe :logic (definition-fix def)
                       :exec def))
             (hyps (mbe :logic (list-fix hyps)
                        :exec hyps)))
          (list (cons 'def def)
                (cons 'hyps hyps)))))