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