• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Pfcs
        • Proof-support
        • Semantics
        • Lifting
          • Lift-thm
          • Lift-var-name-list
          • Lift-thm-constr-satp-specialized-lemma
          • 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-rules
            • Lift-thm-called-lift-thms
            • Lift-table-add
            • 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
          • Indexed-names
          • Well-formedness
          • Abstract-syntax
          • Concrete-syntax
          • R1cs-bridge
          • Parser-interface
        • Wp-gen
        • Dimacs-reader
        • Legacy-defrstobj
        • Proof-checker-array
        • Soft
        • C
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Leftist-trees
        • Java
        • Taspi
        • Riscv
        • 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
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Lifting

    Lift-constraint

    Shallowly embedded semantics of a constraint.

    Signature
    (lift-constraint constr prime state) → term
    Arguments
    constr — Guard (constraintp constr).
    prime — Guard (symbolp prime).

    We turn an equality constraint into an ACL2 equality of the terms denoted by the left and right expressions. We turn a relation constraint into an ACL2 call of the relation on the terms denoted by the argument expressions. Note that we include the variable for the prime.

    Definitions and Theorems

    Function: lift-constraint

    (defun lift-constraint (constr prime state)
     (declare (xargs :stobjs (state)))
     (declare (xargs :guard (and (constraintp constr)
                                 (symbolp prime))))
     (let ((__function__ 'lift-constraint))
       (declare (ignorable __function__))
       (constraint-case
            constr
            :equal
            (cons 'equal
                  (cons (lift-expression constr.left prime state)
                        (cons (lift-expression constr.right prime state)
                              'nil)))
            :relation
            (cons (lift-rel-name constr.name (w state))
                  (append (lift-expression-list constr.args prime state)
                          (cons prime 'nil))))))