Retrieve the encapsulate previously generated by this transformation call, if any.
(previous-transformation-expansion call wrld) → encapsulate?
The
The encapsulate associated to the call is returned, if found;
otherwise,
Function:
(defun previous-transformation-expansion (call wrld) (declare (xargs :guard (and (pseudo-event-formp call) (plist-worldp wrld)))) (let ((__function__ 'previous-transformation-expansion)) (declare (ignorable __function__)) (b* ((table (table-alist 'transformation-table wrld) ) (call (remove-irrelevant-inputs-from-transformation-call call wrld)) (pair (assoc-equal call table))) (if pair (cdr pair) nil))))