• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
    • Math
    • Testing-utilities
      • Cgen
      • Run-script
      • Std/testing
        • Must-fail
        • Assert!-stobj
        • Must-eval-to
        • Assert!
        • Must-succeed
        • Must-succeed*
        • Assert?
        • Must-fail-with-soft-error
        • Must-fail-with-hard-error
        • Must-fail-with-error
        • Must-eval-to-t
        • Must-prove
          • Thm?
        • Must-not-prove
        • Must-not-be-table-key
        • Must-be-redundant
        • Must-fail-local
        • Must-be-table-key
        • Assert-equal
  • Std/testing
  • Errors

Must-prove

A top-level assert$-like command to ensure that a formula gets proved.

This takes the same arguments as thm. It wraps the thm into a must-succeed.

Macro: must-prove

(defmacro must-prove (&rest args)
  (cons 'must-succeed
        (cons (cons 'thm args) 'nil)))

Subtopics

Thm?
Deprecated synonym of must-prove.