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