Set :smt-fname.
(set-fname content hint) → new-hint
Function:
(defun set-fname (content hint) (declare (xargs :guard (and (stringp content) (smtlink-hint-p hint)))) (let ((acl2::__function__ 'set-fname)) (declare (ignorable acl2::__function__)) (b* ((hint (smtlink-hint-fix hint)) (new-hint (change-smtlink-hint hint :smt-fname content))) new-hint)))
Theorem:
(defthm smtlink-hint-p-of-set-fname (b* ((new-hint (set-fname content hint))) (smtlink-hint-p new-hint)) :rule-classes :rewrite)