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