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