• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Debugging
    • Projects
      • Apt
      • Acre
      • Milawa
      • Smtlink
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Legacy-defrstobj
      • Abnf
      • Proof-checker-array
      • Soft
      • Farray
      • Prime-field-constraint-systems
      • Rp-rewriter
        • Rp-ruleset
        • Rp-rewriter/meta-rules
        • Rp-utilities
          • Rp-other-utilities
          • Rule-syntaxp
          • Defthm-lambda
          • Def-rw-opener-error
          • Valid-sc
          • Fetch-new-theory
          • Show-rules
          • Set-rp-backchain-limit
          • Defthmrp
          • Preserve-current-theory
          • Context-from-rp
          • Falist-consistent
          • Ex-from-rp-loose
            • Ex-from-rp
            • Rp-equal
            • Set-rw-step-limit
            • Rp-equal-cnt
            • Ex-from-rp-all2
            • Rp-termp
            • Rp-equal-cw
            • Ex-from-rp-all
            • Set-rp-backchain-limit-throws-error
            • Include-fnc-subterms
            • Include-fnc
          • Defthmrp
          • Rp-rewriter-demo
          • Rp-rewriter/debugging
          • Rp-rewriter/applications
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Leftist-trees
        • Taspi
        • Bitcoin
        • Des
        • Ethereum
        • Sha-2
        • Yul
        • Zcash
        • Proof-checker-itp13
        • Bigmem
        • Regex
        • ACL2-programming-language
        • Java
        • Jfkr
        • X86isa
        • Equational
        • C
        • Cryptography
        • Where-do-i-place-my-book
        • Execloader
        • Json
        • Solidity
        • Paco
        • Concurrent-programs
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Testing-utilities
      • Math
    • Rp-utilities

    Ex-from-rp-loose

    Same as ex-from-rp when term is rp-termp but a little faster.

    Signature
    (ex-from-rp-loose term) → *

    Definitions and Theorems

    Function: ex-from-rp-loose

    (defun
       ex-from-rp-loose (term)
       (declare (xargs :guard t))
       (let ((acl2::__function__ 'ex-from-rp-loose))
            (declare (ignorable acl2::__function__))
            (mbe :logic (if (is-rp-loose term)
                            (ex-from-rp-loose (caddr term))
                            term)
                 :exec (case-match term (('rp & x) (ex-from-rp-loose x))
                                   (& term)))))