(stat1->memory stat1) → memory
Function:
(defun stat1->memory (stat1) (declare (xargs :stobjs (stat1))) (declare (xargs :guard (stat1p stat1))) (declare (xargs :non-executable t)) (prog2$ (acl2::throw-nonexec-error 'stat1->memory (list stat1)) (let ((__function__ 'stat1->memory)) (declare (ignorable __function__)) (nth 2 stat1))))
Theorem:
(defthm stat1-memory-p-of-stat1->memory (implies (stat1p stat1) (b* ((memory (stat1->memory stat1))) (stat1-memory-p memory))) :rule-classes :rewrite)