Filtering...

get-well-founded-relation-plus

books/std/system/get-well-founded-relation-plus

Included Books

other
(in-package "ACL2")
include-book
(include-book "irecursivep-plus")
other
(define get-well-founded-relation+
  ((fn symbolp) (wrld plist-worldp))
  :returns (well-founded-relation symbolp)
  :parents (std/system/function-queries)
  :short "Enhanced variant of @(tsee get-well-founded-relation)."
  :long (topstring-p "This returns the same result as @(tsee get-well-founded-relation),
    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 well-founded relation.")
  (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 ~x0 of ~x1 is not well-formed."
            justification
            fn))
        (well-founded-relation (access justification justification :rel))
        ((unless (symbolp well-founded-relation)) (raise "Internal error: ~
                  the well-founded relation ~x0 of ~x1 is not a symbol."
            well-founded-relation
            fn)))
      well-founded-relation)))