Filtering...

must-not-prove

books/std/testing/must-not-prove

Included Books

other
(in-package "ACL2")
include-book
(include-book "must-fail")
other
(defsection must-not-prove
  :parents (std/testing errors)
  :short "A top-level @(tsee assert$)-like command to ensure that
          a formula does not get proved."
  :long "<p>This takes the same arguments as @(tsee thm).
   It wraps the @(tsee thm) into a @(tsee must-fail).</p>

   @(def must-not-prove)"
  (defmacro must-not-prove
    (&rest args)
    `(must-fail (thm ,@ARGS))))