Get the fn-lst field from a fhg-args.
(fhg-args->fn-lst x) → fn-lst
This is an ordinary field accessor created by defprod.
Function:
(defun fhg-args->fn-lst$inline (x) (declare (xargs :guard (fhg-args-p x))) (declare (xargs :guard t)) (let ((acl2::__function__ 'fhg-args->fn-lst)) (declare (ignorable acl2::__function__)) (mbe :logic (b* ((x (and t x))) (func-alist-fix (cdr (std::da-nth 1 x)))) :exec (cdr (std::da-nth 1 x)))))
Theorem:
(defthm func-alistp-of-fhg-args->fn-lst (b* ((fn-lst (fhg-args->fn-lst$inline x))) (func-alistp fn-lst)) :rule-classes :rewrite)
Theorem:
(defthm fhg-args->fn-lst$inline-of-fhg-args-fix-x (equal (fhg-args->fn-lst$inline (fhg-args-fix x)) (fhg-args->fn-lst$inline x)))
Theorem:
(defthm fhg-args->fn-lst$inline-fhg-args-equiv-congruence-on-x (implies (fhg-args-equiv x x-equiv) (equal (fhg-args->fn-lst$inline x) (fhg-args->fn-lst$inline x-equiv))) :rule-classes :congruence)