Merge main-hint
(merge-main-hint content hint) → new-hint
Function:
(defun merge-main-hint (content hint) (declare (xargs :guard (and (hints-syntax-p content) (smtlink-hint-p hint)))) (let ((acl2::__function__ 'merge-main-hint)) (declare (ignorable acl2::__function__)) (b* ((hint (smtlink-hint-fix hint)) (content (hints-syntax-fix content)) (new-hint (change-smtlink-hint hint :main-hint content))) new-hint)))
Theorem:
(defthm smtlink-hint-p-of-merge-main-hint (b* ((new-hint (merge-main-hint content hint))) (smtlink-hint-p new-hint)) :rule-classes :rewrite)