Filtering...

get-measure-plus

books/std/system/get-measure-plus

Included Books

other
(in-package "ACL2")
include-book
(include-book "irecursivep-plus")
other
(define get-measure+
  ((fn symbolp) (wrld plist-worldp))
  :returns (measure pseudo-termp)
  :parents (std/system/function-queries)
  :short "Enhanced variant of @(tsee get-measure)."
  :long (topstring-p "This returns the same result as @(tsee get-measure),
    but it is guard-verified
    and includes a run-time check (which should always succeed) on the result
    that allows us to prove the return type theorem
    without strengthening the guard on @('wrld').
    This utility also includes a run-time check (which should always succeed)
    on the form of the @('justification') property of the function
    that allows us to verify the guards
    without strengthening the guard of @('wrld').
    Furthermore, this utility causes an error if called on a symbol
    that does not name a recursive logic-mode function;
    the reason for ensuring logic-mode is that
    recursive program-mode functions do not have a measure.")
  (if (not (irecursivep+ fn wrld))
    (raise "The function ~x0 is not recursive." fn)
    (b* ((justification (getpropc fn 'justification nil wrld)) ((unless (weak-justification-p justification)) (raise "Internal error: ~
                  the JUSTIFICATION property ~x0 of ~x1 is not well-formed."
            justification
            fn))
        (measure (access justification justification :measure))
        ((unless (pseudo-termp measure)) (raise "Internal error: ~
                  the measure ~x0 of ~x1 is not a pseudo-term."
            measure
            fn)))
      measure)))